Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
137768 刘益梵 输出九九乘法表 C++ Accepted 0 MS 264 KB 183 2025-11-22 16:35:26

Tests(1/1):


Code:

#include<iostream> using namespace std; int main() { 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; }