九九乘法表
作者:互联网
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 }
标签:getch,九九乘法,run,int,pause,include 来源: https://www.cnblogs.com/MegaByte/p/12067097.html