下面的代码编译不过,可以告诉我是什么原因吗?

#include<inttypes.h>#include<math.h>#include<stdio.h>intmain(void){uint32_tprofit=0;u... #include<inttypes.h>
#include<math.h>
#include<stdio.h>
int main(void)
{
uint32_t profit = 0;
uint32_t reward = 0;
uint32_t temp = 0;
printf("please input the profit:\n");
scanf("%d",&profit);
if(profit < 10)
{
reward = profit * 10%;
}
else
{
temp = 10 * 10%;
profit = profit - 10;
if(profit < 10)
{
reward = temp + profit * 7.5%;
}
else
{
temp += 10 * 7.5%;
profit -= 10;
if(profit < 20)
{
reward = temp + profit * 5%;
}
else
{
temp += 20 * 5%;
profit -= 20;
if(profit < 20)
{
reward = temp + profit * 3%;
}
else
{
temp += 20 * 3%;
profit -= 20;
if(profit < 40)
{
reward = temp + profit * 1.5%;
}
else
{
temp += 40 * 1.5%;
profit -= 40;
reward = temp + profit * 1%;
}
}
}
}
}
printf("the total reward is : %d\n",reward);
return 0;
}
展开
 我来答
zsyzgu
2012-10-17 · TA获得超过231个赞
知道小有建树答主
回答量:192
采纳率:0%
帮助的人:123万
展开全部
C++里面没有诸如10%、1.5%这种写法。可以写成0.1、0.015试试。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式