Run ID:127261
提交时间:2025-07-26 15:09:13
#include<bits/stdc++.h> using namespace std; int main() { for (int c = 1; c <= 9; c++) { for (int i = 1; i <= c; i++) { cout << i << "*" << c << "=" << i * c << " "; } cout << endl; } return 0; }