九九乘法表

 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 }
上一篇:Html+Css小tips:钟表(练习)


下一篇:应用css样式美化网页