You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
359 B

#include<iostream>
using namespace std;
int main()
{
int cup; // 定义变量
float a,b;
cout<<"cup="; // 提示输入
cin>>cup; // 输入购买杯子的数量
a=cup*3*0.88; // 求大洋商城购买水杯的费用
b=(cup-cup/8)*3; // 求百汇商厦购买杯子的费用
if(a<b){
cout<<"大洋商城"<<endl;
}
else{
cout<<"百汇商厦"<<endl; //比较两者之间的大小
}
return 0;
}