This blog is for Automation Test Engineers

Sunday, 27 August 2017

program to print multiplication table

int n,c;
int n=5;
for(c=1;c<=10;c++)
{
System.out.println(n+"*"+c+"="(n*c));

}

0

0 comments:

Post a Comment