二级二级C++全国计算机等级考试 二级C++ 笔试模拟试题(三)
题目内容

下面程序的执行结果为#include "iostream"using namespace std;class A{int a;public:void Seta( int x ){ a = x;}void Display_a(){ cout << a << endl; }};class B{int b;public:void Setb( int x ){ b = x;}void Dispaly_b(){ cout << b << endl; }};class C : public A, private B{private:int c;public:void Setc( int x, int y, int z ){ c = z; Seta( x ); Setb( y ); }void Display_c(){ cout << c << endl; }};①  void main()②  {③    C cc;④    cc.Seta( 1 );⑤    cc.Display_a();⑥    cc.Setc( 2, 2, 3 );⑦    cc.Dispaly_b();⑧    cc.Display_c();}

2024-07-09

A.输出为223

B.有错误在第5行

C.输出为123

D.有错误在第7行

题目答案

试卷相关题目

最新试卷
热门试卷

长理培训客户端 资讯,试题,视频一手掌握

去 App Store 免费下载 iOS 客户端