Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
323870 丁虞轩 【C3-T】九九乘法表 C++ 解答错误 0 4 MS 252 KB 232 2025-05-23 20:36:10

Tests(0/1):


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


测评信息: