Ex2_7.cpp
上传用户:wuzhousb
上传日期:2022-07-12
资源大小:380k
文件大小:1k
源码类别:

书籍源码

开发平台:

Visual C++

  1. /*【例2.7】商场优惠活动规定,某商品一次购买5件以上(包含5件)10件以下(不包含10件)打9折,
  2. 一次购买10件以上(包含10件)打8折。设计程序根据单价和客户的购买量计算总价。
  3. */
  4. #include <iostream>
  5. using namespace std;
  6. int main(){
  7. float price,discount,amount; //单价、折扣、总价
  8. int count;    //购买件数
  9. cout<<"输入单价:"<<endl;
  10. cin>>price;
  11. cout<<"输入购买件数:"<<endl;
  12. cin>>count;
  13. if(count<5)  discount=1;
  14. else if(count<10)  discount=0.9;
  15.      else  discount=0.8;
  16. amount=price*count*discount;
  17. cout<<"单价:"<< price<<endl;
  18. cout<<"购买件数:"<<count<<"tt"<<"折扣:"<<discount<<endl;
  19. cout<<"总价:"<<amount<<endl;
  20. return 0;
  21. }