终于。。。。

来源:5-14 综合练习

gerasim

2015-06-14 20:20

#include <stdio.h>

float all;

float money;

float fee(int distance,int time)

    {if(distance<=3)

        {

            money=14;

        }    

     else

        {

            if(time>=5&time<=23)

            {

                money=(distance-3)*2.3+14;

            }

            else

            {

                money=(distance-3)*2.3*1.2+14;

            }

        }

        return money;

    }

        

int main()

  all=fee(12,9)+fee(12,18);

    printf("%.2f",all);

    return 0;

}


写回答 关注

1回答

  • Perona
    2015-12-12 22:43:39

    可喜可贺

C语言入门

C语言入门视频教程,带你进入编程世界的必修课-C语言

926025 学习 · 20793 问题

查看课程

相似问题