1、选择题
BCDAA
2、填空题
15,27
15
11,10,13,12
3、改错题
1.缺少了要使用的命名空间,应在加上#include <iostream>的下一行添加using namespace std,void main(){}报错,C语言中main函数必须返回int改为:int main()
2.缺少了要使用的命名空间,应在加上#include <iostream>的下一行添加using namespace std,
a.fun( ):句尾没加分号,由void fun(int i,int j)可知应传2个参数,但实际没有传参数
a.fun(1):应传递2个参数,但只传递了一个参数
3.缺少了要使用的命名空间,应在加上#include <iostream>的下一行添加using namespace std,
cout<< this->x=x <<endl;这句里不能有赋值,否则会报错,应为:this->x=x; cout<< x <<endl,
void main(){}报错,C语言中main函数必须返回int,改为:int main() ;
4.缺少了要使用的命名空间,应在加上#include <iostream>的下一行添加using namespace std,
char *s="\0"错,应为:char *s=" ";
C语言中main函数需返回一个int,所以改为int main();
最后show();函数不能直接调用,应加上类的对象:d2.show();
4、编程题