| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 126653 | 罗嘉为 | 九九乘法表2 | C++ | Presentation Error | 0 | 0 MS | 236 KB | 216 | 2024-01-24 16:52:09 |
#include <iostream> using namespace std; int main(){; for(int i = 1; i <= 9; i++){ for(int j = 1; j <= i; j++){ cout << j << "*" << i << "=" << j * i << " "; } cout << endl; } return 0; }