Advertisement
veronikaaa86

2. Таблица за умножение

Feb 11th, 2023
1,304
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.  
  10.                 System.out.printf("%d * %d = %d%n", i, j, result);
  11.             }
  12.         }
  13.     }
  14. }
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement