gpt4 book ai didi

c++ - 在 C++ 中 for 循环结果 0

转载 作者:太空狗 更新时间:2023-10-29 23:48:58 25 4
gpt4 key购买 nike

<分区>

我是C++新手,两周前开始学习C++编码。为什么我下面的代码在构建和运行时总是给我结果 0?请帮忙

# include <iostream>
# include <string>

using namespace std;

int main ()
{
int input = 1;
cout << "input your number : \n";
cin >> input;

int faktorial = 1;

for(int i=1;i<=input;i++)
{
faktorial = faktorial * i;
}
cout << "factorial value from number " << input << " is " << faktorial << endl;
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com