Computer Science, asked by nil272612, 1 year ago

write a java program to display table of a no

Answers

Answered by HRSRaj
2





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);

nil272612: without using scanner
Similar questions