Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

import java.util.

Scanner;

public class main


{
public static void main (String argu[])
{
int num;
int check;

Scanner sc= new Scanner(System.in);

System.out.print("Enter table number : ");

num=sc.nextInt();

do
{
output(num);
System.out.print("Do you want to try again with another number : ");
check=sc.nextInt();
if(check==0)
{
System.exit(0);
}
else
{
System.out.print("Enter table number : ");
num=sc.nextInt();
}
}
while(check!=0);

public static void output(int in)


{
int i;
for(i=1;i<=10;i++)
{
System.out.println( in+ "*" +i+ "=" +(i*in));
}
}
}

You might also like