Run ID:127180
提交时间:2025-07-25 14:58:58
#include <bits/stdc++.h> using namespace std; int main() { for (int n = 1; n <= 4; n++) { for (int i = 1; i <= n; i++) { cout << i << "*" << n<< "=" << i * n << " "; } } cout << endl; return 0; }