SALE0sale

#include
using namespace std;
int main()
{
int money;
do{
cout << "請輸入購買金額:" ;
cin >> money;
if(money>=10000){
cout << "打八折,共為:" << money-(money*0.2)< else if(money<10000 && money>=5000){
cout << "打八五折,共為" << money-(money*0.15)< else if(money<5000 && money>=3000){
cout << "打九折,共為" << money-(money*0.1)< else if(money<3000 && money>=1000){
cout << "打九五折,共為" << money-(money*0.05)< else if(money<1000){
cout << "無折扣"< }while(money!=0);
system("pause");
return 0;
}
arrow
arrow
    全站熱搜
    創作者介紹
    創作者 hfnkiki 的頭像
    hfnkiki

    我要勇敢地追逐我的世界.我的夢...

    hfnkiki 發表在 痞客邦 留言(0) 人氣()