Here you will get java program to find multiplication table of given number.
class Table
{
public static void main(String...s)
{
int n,i;
n=Integer.parseInt(s[0]);
for(i=1;i<=10;++i)
System.out.println(n+" * "+i+" = "+(n*i));
}
}
Output


Sir can you tell how to print prime numbers using structure program