Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
309352 | 邵致远 | 【C1-T】输出字符菱形 | C++ | 解答错误 | 0 | 1 MS | 256 KB | 306 | 2025-02-16 19:47:39 |
#include<iostream> using namespace std; int main(){ int n; cin>>n; cout<<' '<<' '<<'n'<<' '<<' '<<endl; cout<<' '<<'n'<<'n'<<'n'<<' '<<endl; cout<<'n'<<'n'<<'n'<<'n'<<'n'<<endl; cout<<' '<<'n'<<'n'<<'n'<<' '<<endl; cout<<' '<<' '<<'n'<<' '<<' '<<endl; return 0; }