9. 打折
Posted hello-nolan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了9. 打折相关的知识,希望对你有一定的参考价值。
题目:
一件衣服95元,若消费满300元,可打八五折。输入购买衣服件数,输出需要支付的金额(单位:元),保留两位小数。
思路:
直接计算即可。
代码:
#include <iostream>
using namespace std;
int main()
{
const int PRICE = 95;
int total = 0;
double sum = 0.0;
cin >> total;
if (total * PRICE > 300) {
sum = total * PRICE * 0.85;
} else {
sum = total * PRICE;
}
cout << sum << endl;
return 0;
}
以上是关于9. 打折的主要内容,如果未能解决你的问题,请参考以下文章