| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 78639 | sh25_wuyy | 打印乘法口诀 | C++ | Accepted | 0 MS | 252 KB | 246 | 2025-12-27 09:13:04 |
#include <iostream> using namespace std; int main() { int i; int j; int n; int sum; cin>>n; for(i=1;i<=n;i++) { for(j=1;j<=i;j++) { cout<<j<<"*"<<i<<"="<<i*j<<" "; sum+=i*j; } cout<<endl; } return 0; }