public class Arr {
public static void main(String[] args) {
int row = 5;
int col = 5;
for (int i = 0; i < row; i++) {
for (int j = 0; j < col; j++) {
System.out.print(" *");
}
System.out.println();
}OUTPUT IS : -
}
}
* * * * *
* * * * *
* * * * *
* * * * *
* * * * *
No comments:
Post a Comment