Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
319779 | 邵致远 | 旅行(travel) | C++ | 编译错误 | 0 | 0 MS | 0 KB | 220 | 2025-05-01 15:44:33 |
#include<iostream> using namepace std; int main(){ int n; cin>>n; for(int i=1;i<=n;i++){ for(int j=1;j<=n;j++){ cout<<"*"; } cout<<endl; } return 0; }