题解
2025-11-04 13:58:45
发布于:浙江
0阅读
0回复
0点赞
无输出之人
#include<bits/stdc++.h>
using namespace std;
int main(){
for(int i=1;i<=9;i++){
for(int j=i;j<=9;j++)
cout<<j<<'*'<<i<<'='<<setw(2)<<i*j<<' ';
cout<<endl;
}
return 0;
}
这里空空如也

有帮助,赞一个