题解 | #空心正方形图案#
空心正方形图案
http://www.nowcoder.com/practice/72347ee949dc47399186ee183632f303
#include<stdio.h> int main() { int x; while(scanf("%d",&x)!=EOF) { for(int i=0;i<x;i++) { for(int j=0;j<x;j++) { if(i>0&&i<x-1&&j>0&&j<x-1) { printf(" "); } else { printf("* "); } } printf("\n"); } } return 0; }