问答详情
源自:5-2 函数调用

自定义函数

自定义是可以随便定义一个函数吗?

提问者:qq_橙子味的琪_0 2017-10-26 16:28

个回答

  • 慕暖1
    2017-10-26 20:07:54
    已采纳

    #include <stdio.h>

    float cost(input weight,input price)

    {scanf("%f,%f\n",&weight,&price);

    float money;

    money=weight*price;

    printf("总价为:%.1f\n",money);

    return money;

    }

    int main(void)

    {printf("总价格为:%.1f\n",cost(10,20);

    return 0;}