1 阅读程序,其中s::connect函数实现字符串连接。把这个成员函数改写为重载+运算符函数,并修改main函数的对应代码,使其正确运行。 #inc 2024-11-16
2 阅读程序,写出运行结果。 #include <iostream> using namespace std; class T { public : T() { a = 0; 2024-11-16
3 阅读程序,写出运行结果。 #include <iostream> using namespace std; class Vector { public: Vector(){ 2024-11-16
4 阅读程序,写出运行结果。 #include<iostream> using namespace std; class Base { public : void get( in 2024-11-09
5 阅读程序,写出运行结果。 #include<iostream> using namespace std; class A { public : A( int i, int j 2024-11-09
6 编写程序,定义一个Rectangle类,它包含: 数据成员 length,width 成员函数 Rectangle( double l, double w ); //构造函数 double are 2024-11-09
7 阅读程序,写出运行结果。 #include<iostream> using namespace std; class Base1 { public : Base1( int 2024-11-09
8 编写程序。已知有一个描述个人信息的Person类,数据成员记录个人姓名name和身份证号idNumber;成员函数print输出个人信息,构造函数完 2024-11-09
9 阅读程序,写出运行结果。 #include<iostream> using namespace std; class A { public : A(const char *s 2024-11-09
10 第 5 题 以下程序,小猫说出的内容是?(    ) 2024-11-08
11 第 4 题 以下程序,第一个数输入7,第二个数输入8,第三个数输入9,下面哪个选项正确?(    ) 2024-11-08
12 第 3 题 执行如下程序,舞台上最多可以出现(    ) A. 三只相同颜色的螃蟹 B. 三只不同颜色的螃蟹 C. 四只相同颜色的螃蟹 D 2024-11-08
13 第 2 题    以下程序,蝴蝶在移动中切换造型并说出花朵对应数字的是?(    ) 2024-11-08
14 写出下列程序的运行结果。 #include <iostream> using namespace std; class Bclass { public: Bclass( int i, 2024-11-07
15 阅读程序,写出运行结果。 #include <iostream> using namespace std; class Bclass { public: Bclass( int i 2024-11-07
16 阅读程序,写出运行结果。 #include <iostream> using namespace std; template <typename T> void fun( T 2024-11-05
17 阅读程序,写出运行结果。 #include <iostream> using namespace std; template <typename T> class Base { 2024-11-05
18 阅读程序,写出运行结果。 #include<iostream> #include<iomanip> using namespace std; void main()  {  d 2024-11-03
19 阅读程序,写出运行结果。 #include<iostream> #include<iomanip> using namespace std; void main()  {  d 2024-11-03
20 阅读程序,写出运行结果。  #include<iostream> #include<iomanip> using namespace std; void main()  {   2024-11-03
21 阅读以下程序,写出文件D:\f1.txt中的内容和屏幕显示的结果。 #include<iostream> #include<fstream> using namespace 2024-11-02
22 以下程序使用了第1题中生成的文件D:\f1.txt。写出程序运行后屏幕显示的结果。 #include<iostream> #include<fstream> using na 2024-11-02
23 阅读以下程序。修改RandAry函数,把生成数据写入二进制文件D:\rand.dat中;修改OutAll函数,从二进制文件D:\rand.dat中读出全部数据, 2024-11-02
24 阅读下列程序,写出运行结果 #include<iostream> using namespace std; void f(); class T {  public:      T()    2024-11-02
25 阅读下列程序,写出运行结果 ​​​​​​​  #include<iostream> using namespace std; int a[ 10 ] = { 1, 2, 3, 4 2024-11-02