更多"下列程序中横线处正确的语句是( )。 #include<iostr"的相关试题:
[单项选择]下列程序中横线处正确的语句是( )。
#include<iostream>
using namespace std;
class TestClass
public:
void fun( )cout<<" TestClass: : fun"<<end1;
;
class TestClass1 :public TestClass
void fun( )
______//,显示调用基类的函数fun( )
cout<<" TestClassl::fun"<<end1;
;
A. fun();
B. TestClass.fun();
C. TestClass::fun();
D. TestClass->fun();
[填空题]请在下列程序中的横线处填写正确的语句。
#include<iostream>
using namespace std;
class Base
public:
void fun( )cout<<"Base fun"<<endl;
;
class Derivde:public Base
public:
void fun( )
______// 调用基类的函数fun( )
cout<<"Derived fun"<<endl;
;
[填空题]请在下列程序的横线处填写正确的语句。
#include<iostream>
using namespace std;
class Base
public:
void fun( )cout<<"Base fun"<<endl;
;
class Derivde:public Base
public:
void fun( )
______∥ 调用基类的函数fun( )
cout<<"Derived fun"<<endl;
;
[填空题]在下面横线上填写适当的语句,完成程序。
#include<iostream>
using namespace std;
class Base
int x;
public:
Base(int i)x=i;
~Base( )
;
class Derived:public Base
public:
______//完成类Derive构造函数的定义
;
int main( )
Derived Obj;
return 0;
在横线处应填入的语句是______。
[填空题]在下面横线上填上适当的语句,完成程序。
#include<iostream>
using namespace std;
class TestClass
int x;
public:
TestClass(int i)x=i;
~TestClass( )
;
class TestClass1:public TestClass
public;
______//完成类TestClassl构造函数的定义
;
int main( )
TestClass1 0bj( );
return 0;
[单项选择]以下程序的输出结果是 ( )。 #include <iostream> using namespace std; int f(int b[],int m, int n) { int i,s = O; for(i = m;i<n;i+=2) s+=b [i]; return s; } int main ( ) { int x a[] = {1,2,3,4,5,6,7,8,9}; x = f(a,3,7); cout<<x<<end1; return 0; }
A. 10
B. 18
C. 8
D. 15