Code :OUTPUT * ** *** **** ***** ***** **** *** ** * * ** *** **** ***** ***** **** *** ** *
i have made the two triangles the program goes like this.
FOR LOOP.
Code :import java.io.*; public class NewClass { public static void main(String[] args) { for (int i = 1; i <= 5; i++) { for (int j = 1; j <= i; j++) { System.out.print("*"); } System.out.println(" "); } System.out.println(""); for (int i = 1; i <= 5; i++) { for (int j = i; j <= 5; j++) { System.out.print("*"); } System.out.println(" "); } } }
Please Help me i need it tomorrow :((

