Advertisement
veronikaaa86

02. Multiplication Table

Apr 2nd, 2022
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 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. System.out.printf("%d * %d = %d%n", first, second, first * second);
  9. }
  10. }
  11. }
  12. }
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement