RcrdBrt

Untitled

Nov 7th, 2014
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. public class Quadrato {
  2. public static void main(String[] args) {
  3. for (int r = 0; r<10; r++) {
  4. System.out.println();
  5. for (int i = 0; i<10; i++)
  6. System.out.print("*");
  7. }
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment