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

请问我这哪里错了,提示expected declaration or statement at end of input

#include <stdio.h>


float asd(int z,int s)

{

    float y;

    if(s<=3)

    {

        y=14;

        printf("小明每天打车费用为:14元");

    } 

    else

    {

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

        {

        y=14+(s-3)*2.3;

        

        }

        else

        {

        y=14+(s-3)*1.2*2.3;

        

        }

    return y;

}

int main()


{

    printf("小明打车的总费用是%f元\n",asd(9,12)+asd(18,12));

    return 0;

}


提问者:慕尼黑0305854 2018-03-26 18:31

个回答

  • FVae
    2018-03-27 13:53:05
    已采纳

    int main前面少了个{

    if(s<=3)

        {

            y=14;

            printf("小明每天打车费用为:14元");

        } 

    改成

    if(s<=3)

        {

            return 14;

        }