Advertisement
veronikaaa86

02. Multiplication Table

Jun 11th, 2022
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 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