class Square { public static void main(String s[]) { int i,j; { for(i=0;i<5;i++) { System.out.print("\t"); for(j=0;j<5;j++) { System.out.print("* "); } System.out.println(""); } } }
Post a Comment
No comments:
Post a Comment