Write a Java Program to print table of given number.

import java.util.*; class MT10 { public static void main(String[] args) { int n, i; Scanner sc = new Scanner(System.in); System.out.print("Enter Number to get the table : "); n = sc.nextInt(); System.out.println("Here's the table of " + n + " : "); for (i = 1; i <= 10; i++) { int t = i * n; System.out.println(n + " * " + i + " = " + t); } } } Copy Code
Expected Output:

Enter Number to get the table : 5
Here's the table of 5 :
5 * 1 = 5
5 * 2 = 10
5 * 3 = 15
5 * 4 = 20
5 * 5 = 25
5 * 6 = 30
5 * 7 = 35
5 * 8 = 40
5 * 9 = 45
5 * 10 = 50