Run ID:112041

提交时间:2025-03-08 12:32:42

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