Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
47233 C++|付浩泽 【例38.3】 X战警 C++ 无测评数据 0 MS 0 KB 283 2024-05-12 19:13:34

Tests(0/0):


#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; }