Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
2787 孙浚轩 输出九九乘法表 C++ Accepted 0 MS 252 KB 221 2024-02-24 17:55:17

Tests(1/1):


Code:

#include<iostream> using namespace std; int main(){ int x=1,y=1; for(;x<=9;x++){ for(;y<=x;y++) cout<<y<<"*"<<x<<"="<<y*x<<" "; y=1; cout<<endl; } return 0; }