veronikaaa86

02. Multiplication Table

Jun 17th, 2023
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 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.                 int result = i * j;
  9.                 System.out.printf("%d * %d = %d%n", i, j, result);
  10.             }
  11.         }
  12.     }
  13. }
  14.  
Add Comment
Please, Sign In to add comment