题目内容 (请给出正确答案)
[主观题]

在下面程序的横线处填上适当的语句,使该程序的输出为12。 include <iostream> using namespace st

在下面程序的横线处填上适当的语句,使该程序的输出为12。

include <iostream>

using namespace std;

class Base

{

public:

int a;

Base(int i){a=i;}

};

class Derived: public Base

{

int a;

public:

Derived(int x): Base(x),b(x+l){}

void show()

{

【 】;∥输出基类数据成员a的值。

cout<<b<<end1;

}

};

int main()

{

Derived d(1);

d.show();

return 0;

}

查看答案
如搜索结果不匹配,请 联系老师 获取答案
您可能会需要:
您的账号:,可能会需要:
您的账号:
发送账号密码至手机
发送
更多“在下面程序的横线处填上适当的语句,使该程序的输出为12。 i…”相关的问题

第1题

在下面程序的横线处填上适当的语句,使该程序执行结果为10。 include <iostream> using namespace

在下面程序的横线处填上适当的语句,使该程序执行结果为10。

include <iostream>

using namespace std;

class MyClass

{

public:

MyClasS(int A)

{

X=a;

}

【 】//取x的值

private:

int x;

};

int main()

{

MyClass my(10);

点击查看答案

第2题

在下面程序的横线处填上适当的语句,使程序执行后的输出结果为ABCD。 include<iostream> using nam

在下面程序的横线处填上适当的语句,使程序执行后的输出结果为ABCD。

include<iostream>

using namespace std;

classA

{

public:

A(){cout<<'A';}

};

class B:______

{

public:

B(){cout<<'B';}

};

class C:______

{

public:C(){cout<<'C';}

};

class D:public B,public C

{

public:D(){cout<<'D';}

};

void main(){D obj;)

点击查看答案

第3题

在下面程序的横线处填上适当的内容,使该程序输出结果为:

在下面程序的横线处填上适当的内容,使该程序输出结果为:

请帮忙给出正确答案和分析,谢谢!

点击查看答案

第4题

在下列的程序的横线处填上适当的语句,使该程序的输出为12。include<iostream.h> using namespace

在下列的程序的横线处填上适当的语句,使该程序的输出为12。

include<iostream.h>

using namespace std;

class Base

{

public:

int a,b;

Base(int i){a=i;}

};

class Derived:public Base

{

int a;

public:

Derived(int x):Base(x),b(x+1){};

void show()

{

点击查看答案

第5题

在下列的程序的横线处填上适当的语句,使该程序的输出为12。 include<iostream>using namespace st

在下列的程序的横线处填上适当的语句,使该程序的输出为12。

include<iostream>

using namespace std;

class TestClass

{

public:

int a,b;

TestClass(int i,int j)

{

a=i;

b=j;

}

};

class TestClass1:public TestClass

{

int a;

public:

TestClass1(int x):TestClass(x,x+1){}

void show()

{

______;//输出基类数据成员a的值?

cout<<b<<endl;

}

};

int main()

{

TestClass1 d(1);

d.show();

return 0;

}

点击查看答案

第6题

在下面的程序的横线处填上适当的语句,使该程序的输出结果为12。include<iostream> using namespac

在下面的程序的横线处填上适当的语句,使该程序的输出结果为12。

include<iostream>

using namespace std;

class TestClass

{

public:

int a,b;

TestClass(int i,int j)

{

a=i;

b=j;

}

};

class TestCla

点击查看答案

第7题

在下面的程序的横线处填上适当的语句,使该程序的输出为12。include 〈iostream〉using namespace st

在下面的程序的横线处填上适当的语句,使该程序的输出为12。

include 〈iostream〉

using namespace std;

class Base

{

public:

int a;

Base(int i) { a=i;}

};

class Derived : public Base

{

int a;

public:

Derived(int x) : Base(x),b(x+1) {}

void show()

{

【 】; //输出基类数据成员a的值

cout〈〈b〈〈end1;

}

};

int main()

{

Derived d(1);

d.show();

return 0;

}

点击查看答案

第8题

在下面的程序的横线处填上适当的语句,使该程序的输出为12。 include<iostream.h> using namespace

在下面的程序的横线处填上适当的语句,使该程序的输出为12。

include<iostream.h>

using namespace std;

class Base

{

public:

int a,b;

Base(int i){a=i;}

};

class Derived:public Base

{

int a;

public:

Derived(int x):Base(x),b(x+1){};

void show()

{

______;//输出基类数据成员a的值

cout<<b<<endl;

}

};

int main()

{

Derived d(1);

d.show();

return 0;

点击查看答案

第9题

在下面程序中的横线处填上适当内容,使程序完整。

在下面程序中的横线处填上适当内容,使程序完整。

请帮忙给出正确答案和分析,谢谢!

点击查看答案

第10题

下面程序的功能是从键盘读取一行文本并将该文本存储到文件中。当用户运行该程序时,需要输入一行文
本并按下回车键。然后在DOS系统提示符处输入type file.txt并按下Enter键,这时屏幕会显示type file.txt的内容。通过这个命令可以验证该程序的功能。请在每条横线处填写一条语句,使程序的功能完整。

注意:请勿改动main()主方法和其他已有的语句内容,仅在横线处填入适当的语句。

源程序文件代码清单如下:

import java.io.*;

public class DoFile

{

public static void main(String args[])

{

byte buffername[]=______[80];

try

{

System.out.println("\nEnter a line to be saved to disk:");

int bytesbleck= ______;

FileOutputStream f=new FileOutputStream("file.txt");

______;

}

catch(Exception e)

{

e.printStackTrace();

}

}

}

点击查看答案
发送账号至手机
获取验证码
发送
温馨提示
该问题答案仅针对搜题卡用户开放,请点击购买搜题卡。
马上购买搜题卡
我已购买搜题卡, 登录账号 继续查看答案
重置密码
确认修改
温馨提示
每个试题只能免费做一次,如需多次做题,请购买搜题卡
立即购买
稍后再说
警告:系统检测到您的账号存在安全风险

为了保护您的账号安全,请在“赏学吧”公众号进行验证,点击“官网服务”-“账号验证”后输入验证码“”完成验证,验证成功后方可继续查看答案!

微信搜一搜
赏学吧
点击打开微信
警告:系统检测到您的账号存在安全风险
抱歉,您的账号因涉嫌违反赏学吧购买须知被冻结。您可在“赏学吧”微信公众号中的“官网服务”-“账号解封申请”申请解封,或联系客服
微信搜一搜
赏学吧
点击打开微信