Wednesday, February 18, 2015

Java program to display multiplication table of any number

Java program to display multiplication table of any 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));
}
}

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.