分支结构! 这是咋啦?
#include <stdio.h>int main()
{
double w,s=0,p=0;
printf("please input numbers\n ");
if (s<250)
{
w=s*p;
}
else if (s=250 || s>250 && s<500)
{
w=s*p*(1-2/100.0);
}
else if (s>=500 && s<1000)
{
w=s*p*(1-5/100);
}
else if (s>=1000 && s<2000)
{
w=s*p*(1-8/100);
}
else if (s>=2000 && s<3000)
{
w=s*p*(1-10/100);
}
else if (s>=3000)
{
w=s*p*(1-15/100);
}
printf("%f\n",w);
return 0;
}
编译后后好恐怖啊 大神们帮我看看!!! 本人新手 谢谢