摘要: 输出正三角 #include<stdio.h> main(){ int i,j; for(i=1;i<=6;i++){ for(j=1;j<=i;j++){ printf("*"); } printf("\n"); } } 输出倒三角 #include<stdio.h> main(){ int i, 阅读全文
posted @ 2021-11-09 10:08 计算机2106尹金袁 阅读(10) 评论(0) 推荐(0) 编辑