Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

table of any number in java

import java.util.Scanner;  
public class TableExample  
{  
public static void main(String args[])   
{  
Scanner sc = new Scanner(System.in);  
System.out.print("Enter number: ");       
//reading a number whose table is to be print  
int num=sc.nextInt();  
//loop start execution form and execute until the condition i<=10 becomes false  
for(int i=1; i <= 10; i++)  
{  
//prints table of the entered number      
System.out.println(num+" * "+i+" = "+num*i);  
}  
}  
}  
Source by www.javatpoint.com #
 
PREVIOUS NEXT
Tagged: #table #number #java
ADD COMMENT
Topic
Name
3+3 =