Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
315756 丁虞轩 【C3-2】输出乘法表Ⅳ C++ 通过 100 1 MS 248 KB 313 2025-04-02 21:00:37

Tests(1/1):


#include<iostream> using namespace std; int main(){ cout<<"1 * 1 = 1 1 * 3 = 3 1 * 5 = 5 1 * 7 = 7 1 * 9 = 9"<<endl; cout<<"3 * 3 = 9 3 * 5 = 15 3 * 7 = 21 3 * 9 = 27"<<endl; cout<<"5 * 5 = 25 5 * 7 = 35 5 * 9 = 45"<<endl; cout<<"7 * 7 = 49 7 * 9 = 63"<<endl; cout<<"9 * 9 = 81"<<endl; return 0; }


测评信息: