Guest User

Untitled

a guest
Sep 23rd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. public class Test {
  2. public static void main(String args[]) {
  3. outer:
  4. for (int i = 0; i < 10; i++) {
  5. for (int j = 0; j < 10; j++) {
  6. if (j > i) {
  7. System.out.println("");
  8. continue outer;
  9. }
  10. System.out.print(" " + (i * j));
  11. }
  12. }
  13. }
  14. }
  15.  
  16. continue outer;
Add Comment
Please, Sign In to add comment