摘要: 1. #include<stdio.h> main() { int i,j; for(i=1;i<=5;i++) { for(j=1;j<=9-2*i;j++) printf("*"); printf("\n"); } } 2. #include <stdio.h> main(){ int i,j, 阅读全文
posted @ 2021-11-14 10:33 风再起时, 阅读(28) 评论(0) 推荐(0)