public class whilechk1
{
public static void main(String args[])
{
int row,column,y;
System.out.print("\nMultiplication Table\n");
row=1;
do
{
column=1;
do
{
y=row*column;
System.out.print("\t"+y);
column++;
}while(column<=10);
System.out.println("\n");
row++;
}while(row<=10);
}
}
Comments
Post a Comment