#include <iostream>
using namespace std;
int main() {
int n;
cout<<"The table of any number you want to print"<<endl;
cin>>n;
for (int i = 1; i <=10; ++i)
{
cout<<n<<"*"<<i<<"="<<n*n<<endl;
}
return 0;
}
我正在寻找问题的解决方案,我只想知道为什么它不打印值。
1条答案
按热度按时间sqxo8psd1#
我认为打印乘法表的for循环应该使用i而不是n来计算乘积
试试看: