write a program in Java to print the table of 12
Answers
Answered by
1
Please see the above pictures & you can change the 7 times table to 12 times table ok?
Please mark me brainliest
Please mark me brainliest
Attachments:
Answered by
2
Answer:
Java Program to Print Multiplication Table for any Number
- public class Multiplication_Table.Scanner s = new Scanner(System.System. out. print("Enter number:");int n=s. nextInt();for(int i=1; i <= 10; i++)System. out. println(n+" * "+i+" = "+n*i);
Similar questions