提交时间:2024-01-04 15:01:35

运行 ID: 36778

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