Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
81968 sh25_shenpy 海码乘法表 C++ 解答错误 0 MS 252 KB 245 2026-01-09 15:45:11

Tests(0/5):


#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; for(int i=n;i<10;++i){ for(int j=i;j<10;++j){ cout<<i<<"*"<<j<<"="<<i*j<<" "; } cout<<endl; } return 0; }


测评信息: