问答详情
源自:5-14 综合练习

为什么这样算不对啊?

#include <stdio.h>double cost(int x,int time){ //x为路程  
double y; //y为费用    
if(x <= 3 && 0 <= time <= 24){        
y = 13 + 1;        
}else if(x > 3){            
if(time < 5 || time > 23) {               
y = 13 + 1 + 2.3*1.2*(y - 3);            
}            
else if(time >= 5 || time <= 23){               
y = 13 + 1 + 2.3*(y - 3);            
}        
}
}    
int main(){    
printf("打车总费用为:%f",cost(12,9)+cost(12,18));    
return 0;}


提问者:mushroom9057228 2021-08-20 11:26

个回答

  • mushroom9057228
    2021-08-20 11:31:29

    我知道了,x-3,写成y-3了