#include<iostream>
using namespace std;
int main() {
for (int i = 1; i <= 9; i++) {
for (int j = 1; j <= i; j++) {
cout << j << "*" << i << "=" << i * j<<" ";
}
cout << endl;
}
system("pause");
return 0;
}
c++:打印9*9乘法表
最新推荐文章于 2024-05-17 23:02:36 发布