• 2021-04-14 问题

    根据国际植物命名法规规定,Pinus bungeana Zucc. ex Endl. 的发表时间应该以

    根据国际植物命名法规规定,Pinus bungeana Zucc. ex Endl. 的发表时间应该以

  • 2022-06-17 问题

    下列程序的执行结果是___________。 #include&#91;iostream.h&#93; class A { public: A() { cout&#91;<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-&#93;f(); cout<<endl<<"----------"; }

    下列程序的执行结果是___________。 #include&#91;iostream.h&#93; class A { public: A() { cout&#91;<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-&#93;f(); cout<<endl<<"----------"; }

  • 2022-05-28 问题

    有语句inta=1,b=2;以下正确的输出语句是()。 A: cout<<a=a+b<<endl; B: C: cout<<(hex)a+b; D: cout<<&a<<endl<<a<<endl;

    有语句inta=1,b=2;以下正确的输出语句是()。 A: cout<<a=a+b<<endl; B: C: cout<<(hex)a+b; D: cout<<&a<<endl<<a<<endl;

  • 2022-06-12 问题

    已知数组art的定义如下: int arr&#91;5&#93;={1,2,3,4,5); 下列语句中输出结果不是2的是 A: cout<<*arr+1<<endl; B: cout<<*(arr+1)<<endl; C: cout<<arr[1]<<endl; D: cout<<*arr<<endl;

    已知数组art的定义如下: int arr&#91;5&#93;={1,2,3,4,5); 下列语句中输出结果不是2的是 A: cout<<*arr+1<<endl; B: cout<<*(arr+1)<<endl; C: cout<<arr[1]<<endl; D: cout<<*arr<<endl;

  • 2022-06-04 问题

    以下代码写法哪个不符合工程规范? A: using namespace std; B: using std::endl; C: std::cout << "Hello"; D: using std::endl;,std::cout << endl;

    以下代码写法哪个不符合工程规范? A: using namespace std; B: using std::endl; C: std::cout << "Hello"; D: using std::endl;,std::cout << endl;

  • 2022-06-17 问题

    阅读下列程序,写出运行结果。 #include &#91;iostream&#93; using namespace std; int main() { int a = 1, b = 2; bool x, y; cout &#91;< (a++)+(++b) << endl; cout << a % b << endl; x = !a&#93;b; y = a-- && b; cout << x << endl; cout << y << endl; }

    阅读下列程序,写出运行结果。 #include &#91;iostream&#93; using namespace std; int main() { int a = 1, b = 2; bool x, y; cout &#91;< (a++)+(++b) << endl; cout << a % b << endl; x = !a&#93;b; y = a-- && b; cout << x << endl; cout << y << endl; }

  • 2022-06-04 问题

    以下代码写法哪个不符合工程规范? A: using namespace std; B: using std::endl; C: std::cout &lt;&lt; &quot;Hello&quot;; D: using std::endl;std::cout &lt;&lt; endl;

    以下代码写法哪个不符合工程规范? A: using namespace std; B: using std::endl; C: std::cout &lt;&lt; &quot;Hello&quot;; D: using std::endl;std::cout &lt;&lt; endl;

  • 2022-06-12 问题

    已知数组arr的定义如下:int arr&#91;5&#93;={1,2,3,4,5};下列语句中输出结果不是5的是( )。 A: cout&lt;&lt;*(arr+4)&lt;&lt;endl; B: cout&lt;&lt;*(arr+1)+5&lt;&lt;endl; C: cout&lt;&lt;arr[4]&lt;&lt;endl; D: cout&lt;&lt;*arr+4&lt;&lt;endl;

    已知数组arr的定义如下:int arr&#91;5&#93;={1,2,3,4,5};下列语句中输出结果不是5的是( )。 A: cout&lt;&lt;*(arr+4)&lt;&lt;endl; B: cout&lt;&lt;*(arr+1)+5&lt;&lt;endl; C: cout&lt;&lt;arr[4]&lt;&lt;endl; D: cout&lt;&lt;*arr+4&lt;&lt;endl;

  • 2022-06-17 问题

    运行下列程序,第1行输出是____,第2行输出是____,第3行输出是____,第4行输出是____。 #include&#91;iostream&#93; using namespace std; class A{ int a; public: A( ){ a=1; cout<<a<<endl; } ~A(){ a--; cout<<a<<endl; } }; class B{ int b; A a1; public: B( ){ b=3; cout<<b<<endl; } ~B(){ b--; cout<<b<<endl; } }; int main( ) { B b; return 0; }

    运行下列程序,第1行输出是____,第2行输出是____,第3行输出是____,第4行输出是____。 #include&#91;iostream&#93; using namespace std; class A{ int a; public: A( ){ a=1; cout<<a<<endl; } ~A(){ a--; cout<<a<<endl; } }; class B{ int b; A a1; public: B( ){ b=3; cout<<b<<endl; } ~B(){ b--; cout<<b<<endl; } }; int main( ) { B b; return 0; }

  • 2022-06-17 问题

    下列程序运行时,输出的第1行是__(1)__,第2行是__(2)__,第3行是__(3)__,第4行是__(4)__,第5行是__(5)__,第6行是__(6)__。 #include&#91;iostream&#93; 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&#91;iostream&#93; 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 2 3 4 5 6 7 8 9 10