已知商品价格和数量,C语言编程求总价
答案:2 悬赏:30 手机版
解决时间 2021-03-24 06:33
- 提问者网友:爱了却不能说
- 2021-03-23 23:43
已知商品价格和数量,C语言编程求总价
最佳答案
- 五星知识达人网友:慢性怪人
- 2021-03-24 00:03
参考代码:
#include
int main(){
double x;
scanf("%lf",&x);
printf("%lf
",x*30);
return 0;
}
全部回答
- 1楼网友:廢物販賣機
- 2021-03-24 01:09
#include "stdafx.h"
int main(int argc, char* argv[])
{
float quantity,pricePerkg,totalCost;
quantity = 4.5;
pricePerkg = 10.5;
totalCost = quantity * pricePerkg;
printf("%f\n",totalCost);
}
int main(int argc, char* argv[])
{
float quantity,pricePerkg,totalCost;
quantity = 4.5;
pricePerkg = 10.5;
totalCost = quantity * pricePerkg;
printf("%f\n",totalCost);
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯