一个苹果3.5元,当购买数量大于10个,给予打折5%的优惠。计算并输出数量和总价。
#include<stdio.h>
int main()
{ // 这 道 题 很 简 单
const double unit _price = 3.5; // 注意: 哪位大神 帮我分析一下 为什么 const double unit _price; 中的 price 前面要加上下划
int quantity = 0.0; //线。 这里应该还没有用到 set 和get 方法啊 为什么啊 求秒杀!!!!!!!!!!!
printf("Enter the number that you want to buy");
scanf("%d\n"&quantity);
double total = 0.0;
if(quantity > 10)
{
total = quantity * unit _price*(1-0.05);
}
else
{
total = quantity * unit _price;
}
return 0;
}
|