Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
47190 | menziyi | 【例38.3】 X战警 | C++ | No Test Data | 0 MS | 0 KB | 273 | 2024-05-12 18:13:12 |
#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; } }