Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
18859 | xingru | 同行列对角线的格 | C++ | 通过 | 0 MS | 256 KB | 504 | 2023-05-31 18:33:51 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,i,j; cin>>n>>i>>j; for(int j1=1;j1<=n;j1++){ cout<<"("<<i<<","<<j1<<") "; } cout<<endl; for(int i1=1;i1<=n;i1++){ cout<<"("<<i1<<","<<j<<") "; } cout<<endl; for(int i1=1;i1<=n;i1++){ for(int j1=1;j1<=n;j1++){ if(i-j==i1-j1) cout<<"("<<i1<<","<<j1<<") "; } } cout<<endl; for(int i1=n;i1>=1;i1--){ for(int j1=n;j1>=1;j1--){ if(i+j==i1+j1) cout<<"("<<i1<<","<<j1<<") "; } } return 0; }