Run ID:2788

提交时间:2024-02-24 18:01:39

#include<iostream> using namespace std; int main(){ for(int x=1;x<=9;x++){ for(int y=1;y<=x;y++) cout<<y<<"*"<<x<<"="<<y*x<<" "; cout<<endl; } return 0; }