Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
156056 孔声豪 输出九九乘法表 C++ Accepted 1 MS 264 KB 209 2026-06-20 11:43:17

Tests(1/1):


Code:

#include <bits/stdc++.h> using namespace std; int main(){ int h,l; for(h=1;h<=9;h++){ for(l=1;l<=h;l++){ cout<<l<<'*'<<h<<'='<<l*h<<' '; } cout<<endl; } return 0; }