Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
47191 | yuzhengxun | 【例38.3】 X战警 | C++ | 无测评数据 | 0 MS | 0 KB | 301 | 2024-05-12 18:15:06 |
#include<bits/stdc++.h> 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; }