可能重复:
C++ int float problem
我只是想计算并打印一个百分比,虽然计算中使用的变量显示正确,但最终百分比仍显示为“0”。这是代码:
int iWageredTot = iBet * 4 * iGames;
cout<<"Total Won: "<<iBankRoll<<endl;
cout<<"Wagered total: "<<iWageredTot<<endl;
float iPercent;
iPercent = iBankRoll / iWageredTot;
cout<<iPercent<<"% edge\n"<<endl;
这是输出:
Total won: -770
Wagered Total: 4000
0% edge
我尝试使用int,float和double。我错过了什么?谢谢你的帮助。
答案 0 :(得分:3)
也许
iPercent = (float)iBankRoll / iWageredTot;
如果iBankRoll
和iWageredTot
被声明为int
,则iBankRoll / iWageredTot
也将是int
,然后转换为float
,但如果它最初为0
,则最终会得到float
0。
答案 1 :(得分:2)
您需要将/
的一个操作数转换为浮点类型,否则将执行整数除法。你现在也只计算一个分数。如果你想要一个百分比,你需要乘以100。
iPercent = (static_cast<float>(iBankRoll) / iWageredTot) * 100;
答案 2 :(得分:1)
您正在执行(看起来像什么)整数除法,然后将该操作的结果分配给浮点数。这就是浮动为零的原因。
要纠正此问题,请改为执行浮点运算:
iPercent = (float)iBankRoll/(float)iWageredTot;