课程
/后端开发
/C
/C语言入门
自定义是可以随便定义一个函数吗?
2017-10-26
源自:C语言入门 5-2
正在回答
#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;}
qq_橙子味的琪_0 提问者
举报
C语言入门视频教程,带你进入编程世界的必修课-C语言
3 回答自定义函数
2 回答自定义函数
1 回答自定义函数
4 回答自定义函数