出现term does not evaluate to a function错误,但不知道错在哪里

#include
#include
int main()
{

int I;
int m;
printf("请输入本月利润:");
scanf("%d",&I);
if(I>=0&&I<=100000)
m=I*(1+0.1);
if(I>100000&&I<=200000)
m=110000+(I-100000)*(1+0.075);
if(I>200000&&I<=400000)
m=217500+(I-200000)*(1+0.05);
if(I>400000&&I<=600000)
m=322500+(I-400000)*(1+0.03);
if(I>600000&&I<=1000000)
m=425500+(I-600000)*(1+0.015);
if(I>1000000)
m=527000+(I-1000000)(1+0.01);
printf("本月奖金总数为%d",m);
return 0;

}