Home > Back-end >  My multiplication tables
My multiplication tables

Time:11-14

#include
Int main ()
{
Int I, j;
for(i=1; i<=9; I++)
{
for(j=1; j<=I; J++)
{
Printf (" % dx=% d % d ", j, I, I * j);
if(i!=j)
printf(" ");
}
printf("\n");
}
return 0;
}

CodePudding user response:

  • Related