摘要: #include<stdio.h> main(){ int i,j; for(i=1;j<=5;i++){ for(j=1;j<=i;j++){ printf("*"); } printf("\n"); } } 2. #include<stdio.h> main(){ int i,j,k; for( 阅读全文
posted @ 2021-11-15 22:59 陆雲雲 阅读(63) 评论(0) 推荐(0)