Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
47108 | sunhuifeng | 【例38.3】 X战警 | C++ | No Test Data | 0 MS | 0 KB | 277 | 2024-05-12 15:10:40 |
#include<iostream> using namespace std; int main(){ int n=0; while(cin>>n){ for(int i=1;i<=n;i++){ for(int j=1;j<=n;j++){ if((i==j)||(i+j==n+1)){ cout<<"x"; }else{ cout<<" "; } } cout<<endl; } cout<<endl; } return 0; }