Codeforces Round #210 (Div. 2) A. Levko and Table

让对角线的元素为k就行

#include <iostream>
using namespace std; int main() {
int n,k;
cin >> n >> k;
for(int i = ; i < n; ++ i){
for(int j = ; j < n ; ++ j){
if(j != ) cout<<" ";
if( i == j) cout<<k;
else cout<<;
}
cout<<endl;
}
return ;
}
上一篇:Leecode刷题之旅-C语言/python-1.两数之和


下一篇:(转)IOS内存管理 retain release