写出程序运行结果:_________ #include <iostream.h> class Bas { public: ~Bas() { cout<<"Bas construct"<<endl; } virtual void f()=0; }; class Dev:public Bas { public: ~Dev() { cout<<"Bas construct"<<endl; } virtual void f() { cout<<"Dev::f"<<endl; } }; void main() { Bas *a; Dev p; a=&p; a->f(); }
写出程序运行结果:_________ #include <iostream.h> class Bas { public: ~Bas() { cout<<"Bas construct"<<endl; } virtual void f()=0; }; class Dev:public Bas { public: ~Dev() { cout<<"Bas construct"<<endl; } virtual void f() { cout<<"Dev::f"<<endl; } }; void main() { Bas *a; Dev p; a=&p; a->f(); }
下列程序的执行结果是___________。 #include[iostream.h] class A { public: A() { cout[<endl<<"实例化类A的一个对象。"; } virtual ~A() { cout<<endl<<"消除类A的一个对象。"; } virtual void f() { cout<<endl<<"执行类A的成员函数。"; } }; class B:public A { public: B() { cout<<endl<<"事例化类B的一个对象。"; } virtual ~B() { cout<<endl<<"消除类B的一个对象。"; } void f() { cout<<endl<<"执行类B的成员函数。"; } }; void main() { A a=A(); B b=B(); cout<<endl<<"----------"; a.f(); b.f(); cout<<endl<<"----------"; A *p; p=&b; p-]f(); cout<<endl<<"----------"; }
下列程序的执行结果是___________。 #include[iostream.h] class A { public: A() { cout[<endl<<"实例化类A的一个对象。"; } virtual ~A() { cout<<endl<<"消除类A的一个对象。"; } virtual void f() { cout<<endl<<"执行类A的成员函数。"; } }; class B:public A { public: B() { cout<<endl<<"事例化类B的一个对象。"; } virtual ~B() { cout<<endl<<"消除类B的一个对象。"; } void f() { cout<<endl<<"执行类B的成员函数。"; } }; void main() { A a=A(); B b=B(); cout<<endl<<"----------"; a.f(); b.f(); cout<<endl<<"----------"; A *p; p=&b; p-]f(); cout<<endl<<"----------"; }
执行 f = open('a.txt', 'a+') 后,通过如下哪个语句可以往a.txt中写入HELLO? A: f.write('HELLO') B: f.cout('HELLO') C: f.read('HELLO') D: f.scanf('HELLO')
执行 f = open('a.txt', 'a+') 后,通过如下哪个语句可以往a.txt中写入HELLO? A: f.write('HELLO') B: f.cout('HELLO') C: f.read('HELLO') D: f.scanf('HELLO')
下列程序运行时,输出的第1行是__(1)__,第2行是__(2)__,第3行是__(3)__,第4行是__(4)__,第5行是__(5)__,第6行是__(6)__。 #include[iostream] using namespace std; class A{ public: A(int t){cout<<t<<endl;} }; class B{ int a,b; A c; const int d; int e; int &f; public: B(int t):d(t++),f(a),b(t++),c(t++) { e=t++; a=t++; } void print() { cout<<a<<endl; cout<<b<<endl; cout<<d<<endl; cout<<e<<endl; cout<<f<<endl; } }; int main() { B test(1); test.print(); system("pause"); return 0; }
下列程序运行时,输出的第1行是__(1)__,第2行是__(2)__,第3行是__(3)__,第4行是__(4)__,第5行是__(5)__,第6行是__(6)__。 #include[iostream] using namespace std; class A{ public: A(int t){cout<<t<<endl;} }; class B{ int a,b; A c; const int d; int e; int &f; public: B(int t):d(t++),f(a),b(t++),c(t++) { e=t++; a=t++; } void print() { cout<<a<<endl; cout<<b<<endl; cout<<d<<endl; cout<<e<<endl; cout<<f<<endl; } }; int main() { B test(1); test.print(); system("pause"); return 0; }
以下if语句语法正确的是( )。 A: if(x>0) cout<<xelse cout<<--x; B: if(x>0){ x=x+y; cout<<x; }else cout<<--x; C: if(x>0){ x=x+y; cout<<x; };else cout<<--x; D: if(x>0){ x=x+y; cout<<x };else cout<<--x;
以下if语句语法正确的是( )。 A: if(x>0) cout<<xelse cout<<--x; B: if(x>0){ x=x+y; cout<<x; }else cout<<--x; C: if(x>0){ x=x+y; cout<<x; };else cout<<--x; D: if(x>0){ x=x+y; cout<<x };else cout<<--x;
#include "iostream.h" void main() { int j=0; if(j==0) cout<<"**"; else cout<<"$"; cout<<"*\n"; }
#include "iostream.h" void main() { int j=0; if(j==0) cout<<"**"; else cout<<"$"; cout<<"*\n"; }
【填空题】下列程序的输出结果是________。#include<iostream>usingnamespacestd;intf(inta,intb){staticintx=3;if(b>2){x=x*x;b=x;}elseb=x+1;returna+b;}intmain(){inta=3,b;b=2;cout<<f(a,b)<<endl;b=3;cout<<f(a,b);return0;}
【填空题】下列程序的输出结果是________。#include<iostream>usingnamespacestd;intf(inta,intb){staticintx=3;if(b>2){x=x*x;b=x;}elseb=x+1;returna+b;}intmain(){inta=3,b;b=2;cout<<f(a,b)<<endl;b=3;cout<<f(a,b);return0;}
下面程序段执行结果为charc='0'+2;switch{{case1:cout<<'A';break;case'2':cout<<'B';case2:cout<<'C';default:cout<<'D';};
下面程序段执行结果为charc='0'+2;switch{{case1:cout<<'A';break;case'2':cout<<'B';case2:cout<<'C';default:cout<<'D';};
假定p指向的字符串为”string”,若要输出这个字符串的地址值,则使用()。 A: cout< B: cout< C: cout< D: cout
假定p指向的字符串为”string”,若要输出这个字符串的地址值,则使用()。 A: cout< B: cout< C: cout< D: cout
下列哪种方法不能实现换行显示?( ) A: cout << endl; B: cout << ‘n’; C: cout << ‘ ’; D: cout << “ ”;
下列哪种方法不能实现换行显示?( ) A: cout << endl; B: cout << ‘n’; C: cout << ‘ ’; D: cout << “ ”;