Computer Science, asked by mayank000142, 1 year ago

structure of Java program

Answers

Answered by HRSRaj
1





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. for(int i=1; i <= 10; i++) { System. out. println(n+" * "+i+" = "+n*i);
Similar questions