mushroom9057228
2021-08-20 11:26
#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;}
我知道了,x-3,写成y-3了
C语言入门
926207 学习 · 20797 问题
相似问题