Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
137738 万骏博 输出九九乘法表 C++ Accepted 0 MS 272 KB 208 2025-11-22 16:02:05

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int n,m; int main(){ m=0; for(int i=1;i<=9;i++){ for(int j=1;j<=i;j++){ printf("%d*%d=%d ",j,i,i*j); } printf("\n"); } return 0; }