首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include using namespace std; class Goods{//货物类 double unit_price;//单价 int quantity;//数量 public: Goods(double u=0.0,int q
有如下程序: #include using namespace std; class Goods{//货物类 double unit_price;//单价 int quantity;//数量 public: Goods(double u=0.0,int q
admin
2021-02-22
38
问题
有如下程序:
#include
using namespace std;
class Goods{//货物类
double unit_price;//单价
int quantity;//数量
public:
Goods(double u=0.0,int q=0):unit_price(u),quantity(q){}
double getPrice()const{return unit_price;}//返回单价
int getQuantity()const{return quantity;}//返回数量
//增加数量
Goods operator+(int q)const{return Goods(unit_price,quantity+q);}
};
//增加数量
Goods operator+(__________){return g+q;}
//输出货物信息
ostream& operator<<(ostream& os,Goods g){
cout<<’’单价:’’<
return os;
};
int main(){
Goods g(35.6,100);
cout<
return 0;
}
若运行后的输出结果是:
单价:35.6,数量:100
单价:35.6,数量:133
单价:35.6,数量:125
则程序中下划线处缺失部分应该是( )。
选项
A、Goods q,Goods g
B、Goods g,Goods q
C、int q,Goods g
D、Goods g,int q
答案
C
解析
程序中,语句Goods g(35.6,100);定义了Goods类的对象g,通过构造函数可知单价unit_price赋值为35.6,数量quantity赋值为100,所以cout<
转载请注明原文地址:https://kaotiyun.com/show/Dhfp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
设一棵满二叉树共有15个结点,则在该满二叉树中的叶子结点数为()。
下面程序的输出结果是()。#include<iostream.h>#include’’string.h’’voidmain(){chara[]=’’HelloTest’’,b[]=Teat’’;
使用VC6打开考生文件夹下的源程序文件modi1.cpp,该程序运行时有错,请改正其中的错误,使程序正常运行,输出的结果为:Constructor,i=0,Destructor注意:错误的语句在//******error***
使用VC6打开考生文件夹下的源程序文件modi1.cpp,但该程序运行时有错,请改正程序中的错误,使程序输出的结果为:151注意:错误的语句在//******error******的下面,修改该语句即可。1#i
在软件开发中,需求分析阶段产生的主要文档是()。
下列关于输入输出流的叙述中,正确的是()。
数据库DB、数据库系统DBS、数据库管理系统DBMS之间的关系是()。
下列模式中,能够给出数据库物理存储结构与物理存取方法的是()。
在数据库系统的内部结构体系中,索引属于()。
随机试题
钣金下料就是将原材料按需要切成毛坯。()
对1,25-(OH)2-D3的叙述,错误的是
A.白蛋白B.福尔可定C.头孢哌酮D.鱼腥草注射液国家实行特殊管理的药品是
设备的经济寿命取决于设备维护费用的提高和()。
在个人汽车贷款业务中,贷款审批人审查的内容包括()。
以下关于资本公积金的说法中,正确的是()。
下列数据类型能进行排序的是()。
[A]price[B]airport[C]supermarket[D]check[E]change[F]hotel[G]hospitalPlanestakeoffandl
Wherewouldthisadvisorymostlikelyappear?Whatshouldtravelersdoifstayinginacountryforamonth?
A、Yes,I’dloveto.B、Yes,Ithinkso.C、That’sallright.D、Itwasmypleasure.A本题考查对邀请的回答。“Wouldyouliketo…”常用于表示对他人发出邀请。肯定回
最新回复
(
0
)