#include <iostream>
using namespace std;
class salesman
{
public:
salesman()
{
quantity=0;
price=0;
}
static float average();
static void display();
void total();
void set();
private:
static float discount;
static int n;
static float sum;
int quantity;
float price;
};
void salesman::set()
{
cout<< 销售件数 <<endl;
cin>>quantity;
cout<< 售货单价 <<endl;
cin>>price;
}
void salesman::total()
{
if(quantity>=10)
price=price*0.98;
sum+=quantity*price*discount;
n+=quantity;
}
float salesman::average()
{return(sum/n);}
float salesman::discount=0.9;
int salesman::n=0;
float salesman::sum=0;
void salesman::display()
{
cout<< 总销售款为 <<sum<<endl<< 平均售价为 <<salesman::average()<<endl;
}
int main()
{
salesman sal[3];
sal[0].set();
sal[0].total();
sal[1].set();
sal[1].total();
sal[2].set();
sal[2].total();
salesman::display();
return 0;
}
PS:上述答案不正确,我运行过了,以上答案是我修改过的,保证正确啊
using namespace std;
class salesman
{
public:
salesman()
{
quantity=0;
price=0;
}
static float average();
static void display();
void total();
void set();
private:
static float discount;
static int n;
static float sum;
int quantity;
float price;
};
void salesman::set()
{
cout<< 销售件数 <<endl;
cin>>quantity;
cout<< 售货单价 <<endl;
cin>>price;
}
void salesman::total()
{
if(quantity>=10)
price=price*0.98;
sum+=quantity*price*discount;
n+=quantity;
}
float salesman::average()
{return(sum/n);}
float salesman::discount=0.9;
int salesman::n=0;
float salesman::sum=0;
void salesman::display()
{
cout<< 总销售款为 <<sum<<endl<< 平均售价为 <<salesman::average()<<endl;
}
int main()
{
salesman sal[3];
sal[0].set();
sal[0].total();
sal[1].set();
sal[1].total();
sal[2].set();
sal[2].total();
salesman::display();
return 0;
}
PS:上述答案不正确,我运行过了,以上答案是我修改过的,保证正确啊
#include<iostream.h>
class Xiao
{
public:
Xiao(int n,int q,double p):num(n),qua(q),price(p){}
void total();
static double average();
static double sum;
static int count;
static double discount;
static double zhe;
private:
int num;
int qua;
double price;
};
double Xiao::sum=0;
int Xiao::count=0;
double Xiao::discount=0.80;
double Xiao::zhe=0.98;
void Xiao::total()
{
if(qua>10) sum+=(price*zhe*qua);
else sum+=(price*qua);
count+=qua;
}
double Xiao::average()
{
return ((sum*discount)/count);
}
int main()
{
Xiao xia[3]={
Xiao(101,5,23.5),
Xiao(102,12,24.56),
Xiao(103,100,21.5)
};
for(int i=0;i<3;i++)
xia[i].total();
cout<< the sum of Xiao is : <<Xiao::sum<<endl;
cout<< the average price of Xiao is : <<Xiao::average()<<endl;
return 0;
}
class Xiao
{
public:
Xiao(int n,int q,double p):num(n),qua(q),price(p){}
void total();
static double average();
static double sum;
static int count;
static double discount;
static double zhe;
private:
int num;
int qua;
double price;
};
double Xiao::sum=0;
int Xiao::count=0;
double Xiao::discount=0.80;
double Xiao::zhe=0.98;
void Xiao::total()
{
if(qua>10) sum+=(price*zhe*qua);
else sum+=(price*qua);
count+=qua;
}
double Xiao::average()
{
return ((sum*discount)/count);
}
int main()
{
Xiao xia[3]={
Xiao(101,5,23.5),
Xiao(102,12,24.56),
Xiao(103,100,21.5)
};
for(int i=0;i<3;i++)
xia[i].total();
cout<< the sum of Xiao is : <<Xiao::sum<<endl;
cout<< the average price of Xiao is : <<Xiao::average()<<endl;
return 0;
}
#include<iostream>
using namespace std;
class Shop
{
public:
Shop(int m,int q,float p):num(m),quantity(q),price(p){};
void zongjia();
static float average();
static void display();
private:
int num;//人员号码
int quantity;//件数
float price;//单价
static float discount;//每天折扣
static float sum;//总金额
static int n;//总件数
};
void Shop::zongjia()
{
float rate=1.0;
if(quantity>10)rate=0.98*rate;
sum=sum+quantity*price*rate*(1-discount);
n=n+quantity;
}
void Shop::display()
{
cout<<sum<<endl;
cout<<average()<<endl;
}
float Shop::average()
{
return (sum/n);
}
float Shop::discount=0.05;
float Shop::sum=0;
int Shop::n=0;
int main ()
{
Shop s[3]={
Shop(101,5,23.5),
Shop(102,12,24.56),
Shop(103,100,21.5)
};
int i;
for(i=0;i<3;i++)
s[i].zongjia();
Shop::display();
return 0;
}
using namespace std;
class Shop
{
public:
Shop(int m,int q,float p):num(m),quantity(q),price(p){};
void zongjia();
static float average();
static void display();
private:
int num;//人员号码
int quantity;//件数
float price;//单价
static float discount;//每天折扣
static float sum;//总金额
static int n;//总件数
};
void Shop::zongjia()
{
float rate=1.0;
if(quantity>10)rate=0.98*rate;
sum=sum+quantity*price*rate*(1-discount);
n=n+quantity;
}
void Shop::display()
{
cout<<sum<<endl;
cout<<average()<<endl;
}
float Shop::average()
{
return (sum/n);
}
float Shop::discount=0.05;
float Shop::sum=0;
int Shop::n=0;
int main ()
{
Shop s[3]={
Shop(101,5,23.5),
Shop(102,12,24.56),
Shop(103,100,21.5)
};
int i;
for(i=0;i<3;i++)
s[i].zongjia();
Shop::display();
return 0;
}
#include<iostream>
#include<string>
using namespace std;
class sale {
protected:
string num;//销货员号
int quantity;//销货件数
float price;//销货单价
static float discount;//折扣
static float sum;//总销售款
static int n;//销售总件数
public:
sale(string nu, int qu, float pr);
static float average();//求平均售价
static void display();//输出结果
};
sale::sale(string nu, int qu, float pr)
{
num = nu;
price = pr;
if (qu >= 10)
quantity = qu * 0.98;
else
quantity = qu;
sum += quantity * price * discount;
n += quantity;
}
float sale::discount = 0.9;
float sale::sum = 0;
int sale::n = 0;
float sale::average()
{
return sum / n;
}
void sale::display()
{
float a = average();
cout << 当日总销售额为: << n << \n << 每件商品的平均售价为: << a << endl;
}
int main()
{
sale s1( 101 , 5, 23.5);
sale s2( 102 , 12, 24.56);
sale s3( 103 , 100, 21.5);
sale::display();
return 0;
}
#include<string>
using namespace std;
class sale {
protected:
string num;//销货员号
int quantity;//销货件数
float price;//销货单价
static float discount;//折扣
static float sum;//总销售款
static int n;//销售总件数
public:
sale(string nu, int qu, float pr);
static float average();//求平均售价
static void display();//输出结果
};
sale::sale(string nu, int qu, float pr)
{
num = nu;
price = pr;
if (qu >= 10)
quantity = qu * 0.98;
else
quantity = qu;
sum += quantity * price * discount;
n += quantity;
}
float sale::discount = 0.9;
float sale::sum = 0;
int sale::n = 0;
float sale::average()
{
return sum / n;
}
void sale::display()
{
float a = average();
cout << 当日总销售额为: << n << \n << 每件商品的平均售价为: << a << endl;
}
int main()
{
sale s1( 101 , 5, 23.5);
sale s2( 102 , 12, 24.56);
sale s3( 103 , 100, 21.5);
sale::display();
return 0;
}
#include <iostream>
using namespace std;
class salesman
{
public:
salesman()
{
quantity=0;
price=0;
}
static float average();
static void display();
void total();
void set();
private:
static float discount;
static float sum;
static int n;
int quantity;
float price;
};
void salesman::set()
{
cout<< 销售件数 <<endl;
cin>>quantity;
cout<< 售货单价 <<endl;
cin>>price;
}
void salesman::total()
{
if(quantity>=10)
price=price*0.98;
sum+=quantity*price*discount;
n+=quantity;
}
float salesman::average()
{
return(sum/n);
}
float salesman::discount=0.9;
int salesman::n=0;
float salesman::sum=0;
void salesman::display()
{
cout<< 总销售款为 <<sum<<endl<< 平均售价为 <<salesman::average()<<endl;
}
int main()
{
salesman sal[3];
sal[0].set();
sal[0].total();
sal[1].set();
sal[1].total();
sal[2].set();
sal[2].total();
salesman::display();
}
using namespace std;
class salesman
{
public:
salesman()
{
quantity=0;
price=0;
}
static float average();
static void display();
void total();
void set();
private:
static float discount;
static float sum;
static int n;
int quantity;
float price;
};
void salesman::set()
{
cout<< 销售件数 <<endl;
cin>>quantity;
cout<< 售货单价 <<endl;
cin>>price;
}
void salesman::total()
{
if(quantity>=10)
price=price*0.98;
sum+=quantity*price*discount;
n+=quantity;
}
float salesman::average()
{
return(sum/n);
}
float salesman::discount=0.9;
int salesman::n=0;
float salesman::sum=0;
void salesman::display()
{
cout<< 总销售款为 <<sum<<endl<< 平均售价为 <<salesman::average()<<endl;
}
int main()
{
salesman sal[3];
sal[0].set();
sal[0].total();
sal[1].set();
sal[1].total();
sal[2].set();
sal[2].total();
salesman::display();
}
本文链接:https://you-hui.com/youhuidaquan/shang-dian-xiao-shou-mou-yi-jian-shang-pin-mei-tian-gong-bu-tong-yi-de-zhe-kou-discount-tong-shi-yun-xu-xiao-shou-ren-yuan-zai-1743790046.html
标签: un sco co 公布 人员 的折扣 编程求折扣 销售 统一 di ... 商店 unt 折扣 每天 一件 nt 同时 商品 允许
标签: un sco co 公布 人员 的折扣 编程求折扣 销售 统一 di ... 商店 unt 折扣 每天 一件 nt 同时 商品 允许
猜你喜欢
- 今天看到一家卖衣服的店 挺漂亮的衣服就10元一件,就买了,但是听说便宜...
- 在拼多多种树领13元券部分商品能用是什么商品?
- 苹果教育商店优惠
- 某商场进行促销活动,购满100元,送20元礼券...小学数学问题
- 手游小米折扣怎么获取?有哪些渠道可以享受?
- ...pixel4和googlepixel4xl有什么区别百思买将Pixel3和3XL的折扣...
- 在深圳天虹商场花了500多块钱买了一双大洋洲袋鼠牌子的鞋子还是打五折的...
- 苏州多个楼盘同时取消折扣销售,释放了什么信号?
- 娇兰佳人的产品为什么有折扣
- 促销打折等现金折扣如何开具发票
- 逆战3000折扣卷没什么用
- 淘宝618活动优惠力度不如双十一吗?618活动优惠力度不大怎么办?_百度知 ...
- 罗马帝国游戏充值折扣大吗?如何获取最优折扣?
- 问道手游五折折扣券怎么获取?哪里领取?
- 米币充值游戏有折扣吗?充值时能享受优惠吗?
- 天猫国际卷任何商品都可以买吗
- ...想问一下在武汉的哪些地方买衣服、鞋子比较便宜一点,质量也还...
- 丁米正品折扣是真的吗
- 如果折扣算出来是2.5,那是多少折呢?0.8呢?急!!!
- 今天我买窗帘一个看了另一个我信她没有看她说是一样的结果拿到家完全不...
- Christian Louboutin 持久哑光指甲油 #001M RougeLouboutin 13ml-购 ...
- Bluehost中国官网 - 75%折扣优惠码2024
- switch游戏折扣在哪里看?如何找到最全的折扣信息?
- 购物折扣问题游戏怎么玩?有哪些技巧?
- 淘客省钱小技巧,每天都是双十一
- 移动流量限时折扣卡怎么办理_移动流量折扣专区在哪打开
- 双十一左右,想组织公司团建,可否推荐下适合团建出游的必备清单?_百度...
- 林肯首款国产SUV正式上市 售24.68万起,五款车型买哪款最划算?_百度知 ...
- 柴油价格4.97,我加了1000块钱,他们又返给我50,安这样算每升优惠多少钱...
- 商业折扣考虑增值税吗
- coach美国代购一千多靠谱吗-美国代购蔻驰包的是真的吗
- 山东航空掌上飞注册给的优惠卷怎么用??可以买机票用?可是没出现可以用的...
- 王者荣耀王昭君限定皮折扣到哪天?
- 2022淘宝88会员双十一优惠券怎么用-2022淘宝双十一88会员消费券红包使用...
- 大连奥特莱斯折扣大吗
- 天猫跨店满减可以和店铺优惠同时使用吗
- 折扣3.5折,买5万块钱,送5万块原价商品,相当于折扣多少,怎么算_百度...
- 新公司购买的董事会地毯价值6000元,怎么入帐 记入哪个科目?谢谢...
- 没有折旧过的固定资产报废怎样账务处理?要补提折扣吗?
- ...学生优惠了!买手机、电脑、平板还能叠加国补【2025年教育优惠...
- 微商输入法怎么购买vip 设置会员折扣方法
- 销售优惠的金额做什么分录
- QQ话费券里使用规则写着 同一身份证、银行卡用户只能使用相同面值话_百 ...
- 北京京榜折扣仓保真么
- 想买奥迪Q3的看过来,途观L性价比也不低,现已跌至20.08万元起_百度知...
- ...朋友们知道类似满座网上最近有啥团购优惠券
- 孩子留学美国,我现在想在洛杉矶购一套房子自用带出租,房价大概多少,有...
- 手游仙灵觉醒送SS折扣?如何获取最大优惠?
- 仙侠传奇如何申请优惠折扣?
- 永劫无间肯德基大神卡购买方法分享-永劫无间肯德基大神卡购买方法分享...
相邻内容
- 想在天津买张购物卡送礼,谁知道天津比较好的大型超市有哪些
- 重庆地铁一日票在哪儿购买
- 阜阳和华融泰城值得买吗?
- 神龙盛唐为什么便宜
- 武汉一键加油没有优惠了
- 什么时段买空调便宜
- 88vip消费券618是全场通用吗 88vip只有618有大额券吗
- ipad air4教育优惠便宜多少钱?ipadair3教育优惠多少钱
- 买房可小刀是什么意思
- QQ飞车手游皇冠值得买吗
- 三八节预售和现货活动力度一致吗
- 京东教育优惠毕业生几月失效
- 穿搭博主推荐的低价衣服在哪能买到?
- 教师资格证威海旅游哪里有优惠
- (苏泊尔SW-17D818电水壶)-购买最佳价格
- 首套房商贷优惠有哪些
- 海底捞带老人去有优惠么
- 哪个网站书便宜。
- 2022佛山紫南文化旅游区国庆活动佛山春节活动
- 在苏宁易购suning 网上购买的商品不给按期送货请找那个部门投诉?_百度...
- 税收优惠政策为企业带来了哪些好处?
- 闲鱼好多卖苹果手机特别便宜有什么猫腻
- 常熟哪里卖运动背包便宜
- 仙桃梦里水乡门票免费有什么优惠_西昌湿地公园2023收门票吗
- 全新大众凌渡,起步价14万,值得买吗?
- 美团怎样领外卖优惠券省钱
- 越南国内机票怎么买啊
- 京东白条免息券哪里找
- 宝来2020款三厢最低多少钱可以落地?宝来优惠价
- 国家对制造业的优惠政策
- 梦幻抽签买号是什么意思
- Wish为卖家提供1000元联运项目优惠券!敦煌网物流商系统升级
- 二手的手表哪里买比较好(二手手表在哪里买比较好)
- 配置升级,优惠力度诱人,合资SUV又来搅局者
- 哪些东西在京东买比较划算?
- 想买一辆大众朗逸,这款车多少钱入手不亏!看看你买贵了吗?
- 美式家具哪里买便宜
- 为什么香港网上买的苹果MP3都那么便宜呢?
- 谁有兰蔻的促销代码啊或是怎么样才能拿到啊
- 澳门哪里买衣服便宜