Advertisement
desislava_topuzakova

02. Multiplication Table

Jun 4th, 2023
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. public class MultiplicationTable_02 {
  2. public static void main(String[] args) {
  3.  
  4. //първи множител: [1;10]
  5. //втори множител: [1;10]
  6.  
  7. for (int first = 1; first <= 10; first++) {
  8. for (int second = 1; second <= 10; second++) {
  9. System.out.println(first + " * " + second + " = " + (first * second));
  10. }
  11. }
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement