摘要: 1.输出直角三角形。 #include<stdio.h> main() { int i,j; for(i=1;i<=5;i++){ for(j=1;j<=i;j++){ printf("*"); } printf("\n"); } } 2.输出倒等腰三角形。 #include<stdio.h> ma 阅读全文
posted @ 2021-11-09 10:56 龙23 阅读(17) 评论(0) 推荐(0) 编辑