qq_橙子味的琪_0
2017-10-26 16:28
自定义是可以随便定义一个函数吗?
#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;}
C语言入门
926206 学习 · 20797 问题
相似问题