题解 | 空心正方形图案
空心正方形图案
https://www.nowcoder.com/practice/72347ee949dc47399186ee183632f303
#include <iostream> using namespace std; int main() { int n; while(cin>>n){ for(int i=0;i<n;i++){ for(int j=0;j<n;j++){ if(j==0||j==n-1||i==0||i==n-1)cout<<"* "; else cout<<" "; } cout<<endl; } } return 0; } // 64 位输出请用 printf("%lld")