Advertisement
Guest User

Untitled

a guest
Nov 1st, 2014
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1. import java.util.*;
  2. public class Z342 {
  3.     public static void main(String[] args) {
  4.         int result;
  5.         for(int i=1; i<=12; i++){
  6.             System.out.println("\n");
  7.             for(int j=1; j<=12; j++){
  8.                 System.out.printf("%4d",i*j);
  9.             }
  10.         }
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement