| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 76718 | sh25_zhuwy | 打印乘法口诀 | C++ | 输出格式错误 | 0 MS | 248 KB | 303 | 2025-12-19 16:22:01 |
#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; }