Advertisement
Guest User

Untitled

a guest
Jun 21st, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.23 KB | None | 0 0
  1. public class Program {
  2.  
  3.     public static void main(String[] args) {
  4.         int stop = 6;
  5.         for(int x = 1; x <= stop; x++) {
  6.             for(int y = 1; y <= stop; y++) {
  7.                 System.out.print(x * y + "\t");
  8.             }
  9.             System.out.println();
  10.         }
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement