Tables Printing in Java Programs
Tables are Mathematical listed down numbers which showing the results with calculated series Rows and Column.
Num * 1 = SNum
upto
Num * 10 = SNum or Num * 20 = SNum
example: 2*5=10 which means 2 number multiple by 5 which is equals to 10 and if 2 number is added 5 times its also calculated 10.
import java.util.Scanner;
class Table
{
public static void main(String[] args)
{
Scanner read=new Scanner(System.in);
System.out.print("Enter Table to Print:= ");
int num = read.nextInt();
System.out.println("-------------------------");
for(int i=1;i<=10;i++)
{
int SNum=num*i;
System.out.println(num + " * "+ i +" = "+ SNum);
}
}
}
(Visited 138 times, 1 visits today)
Written by:

Great article. Good to understand for everyone.