我在C++中查找乘法表的答案/

kq0g1dla  于 2022-12-20  发布在  其他
关注(0)|答案(1)|浏览(131)
#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;
}

我正在寻找问题的解决方案,我只想知道为什么它不打印值。

sqxo8psd

sqxo8psd1#

我认为打印乘法表的for循环应该使用i而不是n来计算乘积
试试看:

cout<<n<<"*"<<i<<"="<<n*i<<endl;

相关问题