#include <stdio.h>

main()
{
 int c;
 for(int a=2;a<=9;a++)
 {
  for(int b=1;b<=9;b++)
  {
   c = a * b;

   printf("%d * %d = %d\n",a,b,c);
  }
   printf("\n");
 }
}

반응형

+ Recent posts