| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 76720 | sh25_zhuwy | 打印乘法口诀 | C++ | Presentation Error | 0 MS | 252 KB | 313 | 2025-12-19 16:23:53 |
#include<bits/stdc++.h> using namespace std; int main() { int a; cin>>a; cout<<"1*1=1"<<endl; cout<<"1*2=2 2*2=4"<<endl; cout<<"1*3=3 2*3=6 3*3=9"<<endl; cout<<"1*4=4 2*4=8 3*4=12 4*4=16"<<endl; cout<<"1*5=5 2*5=10 3*5=15 4*5=20 5*5=25"<<endl; return 0; }