gpt4 book ai didi

c++ - 如何使用 if 语句更改变量值

转载 作者:行者123 更新时间:2023-11-30 21:33:01 29 4
gpt4 key购买 nike

所以我尝试制作一个付款计算器,它会要求用户输入工资,它应该向他们显示所有内容(他们的净工资,他们的津贴,他们的工资等),我正在尝试这样做,以便如果他们输入的数字在一定范围内,代码的其余部分将使用一定的数字,但我遇到一个问题,那就是只有我的 else if 语句才能正常工作。 if 语句将执行,但也会显示 else if 语句。你们能帮忙吗?

这是部分代码:

    ///Allowance
int catagory()
{
if ((income <= 150000) && (income >= 80000))
{
allowance = 8000;
printf("\nYour Allowance is: %d", allowance);
}
else if((income <= 79999) && (income >= 55000));
{
allowance = 6500;
printf("\nYour Allowance is: %d", allowance);
}
}

最佳答案

else if((income <= 79999) && (income >= 55000));
^^^

去掉那个分号。现在应该可以正确运行了。

关于c++ - 如何使用 if 语句更改变量值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42876126/

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