gpt4 book ai didi

c++ - 输出函数 C++ 的问题

转载 作者:行者123 更新时间:2023-11-28 06:41:06 24 4
gpt4 key购买 nike

我无法让这个程序正确输出。它模拟一个醉酒的水手在木板上随机向左或向右走一步。在模拟结束时,程序输出他从板上掉下来的次数与没有掉下来的次数的百分比。我的百分比始终为零,而且我无法弄清楚我的代码有什么问题。

此函数正确输出“experiments”和“fallCount”变量,但始终将“fallCount/experiments”显示为零。

这应该是“经过 2 次实验,水手跌倒 1 次,跌倒百分比为 0.5%”(如果 experiments = 2 和 fallCount = 1)相反,它每次都是 0%。

让我知道我做错了什么。谢谢!

void  outputExperimentStats(int experiments, int fallCount)
{
cout << "After " << experiments << " experiments, sailor fell "
<< fallCount << " time, fall percentage was " << fallCount / experiments << "%\n";
}

最佳答案

那是因为你使用的是整数除法。没有小数,所以事情会被截断。例如。

1 / 2 --> 0  // integer division

这是正确的、预期的行为。

要获得所需的行为,请使用 doublefloat .

1.0 / 2.0 --> 0.5  // double division

在您的示例中,您可以将输入类型更改为 double或者如果你想保留它们 int , 您可以在除法期间转换它们

static_cast<double>(fallCount) / static_cast<double>(experiments)

关于c++ - 输出函数 C++ 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25938789/

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