摘要: #include<stdio.h>#include<stdlib.h>#include<windows.h>int main(){ int a,b,c; for(a=1;a<10;a++) { for(b=1;b<10;b++) { c=a*b; printf("%.2d ",c); } print 阅读全文
posted @ 2019-07-18 22:13 Cathycat 阅读(190) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>#include<stdlib.h>#include<windows.h>int main(){ int a,b; a=1; while(a<=100) { system("cls"); b=1; while(b<=a) { printf(" "); b=b+1; 阅读全文
posted @ 2019-07-18 21:13 Cathycat 阅读(137) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>#include<stdlib.h>#include<windows.h>int main(){ int a,b; a=1; while(a<=100) { b=1; system("cls"); while(b<=a) { printf(" "); b=b+1; 阅读全文
posted @ 2019-07-18 21:01 Cathycat 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 是不是无法识别1<=n<=30 阅读全文
posted @ 2019-07-18 20:50 Cathycat 阅读(80) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>#include<stdlib.h>int main(){ int a,b,n; scanf("%d",&n); while(a<=n) { b=1; while(b<=a) { printf("%d ",a); b=b+1; } printf("\n"); a=a 阅读全文
posted @ 2019-07-18 20:45 Cathycat 阅读(117) 评论(0) 推荐(0) 编辑