| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 81971 | sh25_shenpy | 海码乘法表 | C++ | 通过 | 0 MS | 252 KB | 296 | 2026-01-09 15:46:02 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; if(n==0) cout<<"没意思"; else{ for(int i=n;i<10;++i){ for(int j=i;j<10;++j){ cout<<i<<"*"<<j<<"="<<i*j<<" "; } cout<<endl; } } return 0; }