Advertisement
veronikaaa86

02. Multiplication Table

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