Run ID:127219

提交时间:2025-07-25 17:09:37

#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; }