【C】#正方形图案#
正方形图案
https://www.nowcoder.com/practice/1304bb23c2e344989d5c7a578d263e4c
#include <stdio.h>
int main() {
int n;
while (scanf("%d", &n) != EOF) {
for(int i = 0; i < n; i++){
for(int j = 0; j < n; j++){
printf("* ");
}
printf("\n");
}
}
return 0;
}
查看10道真题和解析
