Download as doc, pdf, or txt
Download as doc, pdf, or txt
You are on page 1of 3

public class loopG1 { public static void main(String[] args) { for (int x=1; x<=5; x++) { for (int

y=1; y <=x; y++) { System.out.print(*);} System.out.println(""); } } } public class loopG1 { public static void main(String[] args) { for (int x=1; x<=5; x++) { for (int y=5; y >=x; y--) { System.out.print(*);}

System.out.println(""); } } }

public class loopG1 { public static void main(String[] args) { for (int x=1; x<=5; x+=2) { for (int y=1; y <= x; y++) { System.out.print("*");} System.out.println("");

} for (int x=1;x<=5; x+=2) {for (int y=3; y>=x; y--){ System.out.print("*");} System.out.println(""); } } }

You might also like