Run ID:156056
提交时间:2026-06-20 11:43:17
#include <bits/stdc++.h> using namespace std; int main(){ int h,l; for(h=1;h<=9;h++){ for(l=1;l<=h;l++){ cout<<l<<'*'<<h<<'='<<l*h<<' '; } cout<<endl; } return 0; }