标签:stdio.h std nbsp bsp code for printf can include
1 #include<stdio.h> 2 int main() 3 { 4 int n; 5 scanf("%d",&n); 6 for(int t=0; t<n; ++t) 7 { 8 if(t) 9 puts(""); 10 int m; 11 scanf("%d",&m); 12 for(int i=1; i<=m; ++i) 13 { 14 printf("%d*%d=%d",i,i,i*i); 15 for(int j=i+1; j<10; ++j) 16 printf(" %d*%d=%d",i,j,i*j); 17 puts(""); 18 } 19 } 20 }
标签:stdio.h std nbsp bsp code for printf can include
原文地址:http://www.cnblogs.com/qq188380780/p/6361064.html