Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class RectangleOf10x10Stars {
- public static void main(String[] args) {
- for (int row = 0; row < 10; row++) {
- for (int col = 0; col < 10; col++) {
- System.out.print("*");
- }
- System.out.println();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment