提交时间:2023-02-03 13:40:33
运行 ID: 68213
#include <bits/stdc++.h> using namespace std; int t,x; int main(){ cin>>t; while(t--){ cin>>x; for(int i=1;i<=x;i++){ for(int j=1;j<=x;j++){ if(i==j||i+j==x+1)cout<<"X"; else cout<<" "; } cout<<endl; } cout<<endl; } return 0; }