C++程序查找折扣百分比
在这个问题中,我们得到了两个数字,它们定义了某个产品的标价 (M) 和售价 (S)。我们的任务是创建一个C++程序来查找折扣百分比。
折扣是指从产品实际价格(标价)中扣除的金额。
折扣公式为:
discount = marked price - selling price
折扣百分比是从产品实际价格中扣除的价格百分比。
折扣百分比的公式为:
discount percentage = (discount / marked price ) * 100
让我们举个例子来理解这个问题:
输入
240, 180
输出
25%
解释
Discount = (240 - 180) = 60 Discount percentage = (60/240)*100 = 25%
解决方案方法
折扣和折扣百分比的公式为:
Discount = marked price - selling price Discount percentage = (discount / marked price ) * 100
程序说明我们解决方案的工作原理:
示例
#include <iostream> using namespace std; int main() { float MP = 130, SP = 120; float DP = (float)(((MP - SP) * 100) / MP); printf("The discount percentage on the given product is %.2f\n", DP); return 0; }
输出
The discount percentage on the given product is 7.69
广告