收起
第一个图形,用双层循环输出5行5列。
#include<stdio.h> int main(){ for(int i=0;i<5;i++){ for(int j=0;j<5;j++){ printf("* "); } printf("\n"); } return 0; }
报告相同问题?