Advertisement
veronikaaa86

02. Multiplication Table

Apr 10th, 2021
710
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. package nestedLoops;
  2.  
  3. public class P02MultiplicationTable {
  4.     public static void main(String[] args) {
  5.  
  6.         for (int i = 1; i <= 10; i++) {
  7.             for (int j = 1; j <= 10; j++) {
  8.                 System.out.printf("%d * %d = %d%n", i, j, i * j);
  9.             }
  10.         }
  11.     }
  12. }
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement