九九乘法表

 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 
 4 /* run this program using the console pauser or add your own getch, system("pause") or input loop */
 5 
 6 int main(int argc, char *argv[]) {
 7     int i,j;
 8     for(i=1;i<=9;i++)
 9     {
10         for(j=0;j<=9;j++)
11         {
12             printf("%dx%d=%d\t",i,j,i*j);
13         }
14         printf("\n");
15      }
16     return 0;
17 }
posted @ 2019-12-19 12:51  MegaByte  阅读(162)  评论(0)    收藏  举报