| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 3939 | C班-吴浩轩 | 编程求1*2*3*...*n | C++ | Wrong Answer | 0 | 0 MS | 264 KB | 141 | 2025-01-04 15:47:57 |
#include <bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; for(int x;x<=a;x++){ cout<<x*x<<endl; } return 0; }