Search:

Type: Posts; User: KillerToFu

Search: Search took 0.10 seconds.

  1. Replies
    3
    Views
    4,259

    Re: Inverted Right Triangle

    public class tester
    {
    public static void main(String[] args)
    {

    for (int i = 0; i < 10; i++) {
    for (int j = 0; j < i; j++)
    System.out.print("...
  2. Replies
    3
    Views
    4,259

    Inverted Right Triangle

    Making a much larger program with a menu to determine what * triangle you would like but can not get the triangle like this to work:

    **********
    -*********
    --********
    ---*******
    ----******...
Results 1 to 2 of 2