某商店规定,某商品一次购买5件以上(包含5件)打九折,一次购买10件以上(包含10件)打八折,请根据单价和数量球总价

#include
using namespace std;
int main()
{
 int year;
 float price,discount,amount;//定义单价,折扣,总价
 int count;                 //定义购买数量 
 cout<<"please cin the price"<  cin>>price;
 cout<<"please cin the count"<  cin>>count;
 if(count<5) discount=1;
 else if(count<10) discount=0.9;
 else discount=0.8;
 amount=price*count*discount;
 cout<<"price:"<  return 0;

}

此为代码,下方源代码

某商店规定,某商品一次购买5件以上(包含5件)打九折,一次购买10件以上(包含10件)打八折,请根据单价和数量球总价

你可能感兴趣的:(c++)