摘要: 1. #include<stdio.h> main(){ int i,j; for(i=1;i<=5;i++){ for(j=1;j<=i;j++) printf("*"); printf("\n"); } } #include<stdio.h> main() { int i,j,k; for(i= 阅读全文
posted @ 2021-11-11 13:04 计算机2106李洋 阅读(27) 评论(0) 推荐(0) 编辑