http://zhidao.baidu.com/question/418040990.html?oldq=1
#include "stdio.h"void main()
{
double apple=2.5, pear=1.8, banana=2.0, orange=1.6
double a, b, c, d
printf("请输苹果、鸭梨、香蕉、桔子皮迹毁的重量, 每输入一个数敲一次回车。\n")
scanf("州氏%lf%lf%lf%lf", &a, &b, &c, &d)
double total, money
total = a*apple + b*pear + c*banana + d*orange
printf("应付款: %lf\n", total)
printf("请输入顾客实付款数:\n")
scanf("%lf",&money)
printf("应找钱数: %lf\n", money-total)
}
程序通过调试运行,完全正确。
楼主觉得好就把燃备我列为最佳答案,谢谢。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)