Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
126897 刘子隽bylz 九九乘法表2 C++ 通过 100 0 MS 244 KB 416 2024-01-24 17:23:35

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main(){ for (long long i = 1; i <= 9; i++) { for (long long j = 1; j <= i; j++) { long long ans = i*j; cout << j << "*" << i << "=" << ans; if (ans < 10) { cout << " "; } else { cout << " "; } } cout << endl; } return 0; }


测评信息: