题目详情
当前位置:首页 > 职业培训考试
题目详情:
发布时间:2023-10-11 13:07:56

[填空题]程序的输出结果是 【14】 。 #include <iostream> using namespace std; class A{ int x; public: A(int x=1):x(x){cout<<x;} }; void main( ){ A a,b(2),c(3); }

更多"程序的输出结果是 【14】 。 #include <iostrea"的相关试题:

[填空题]下列程序输出结果是 【13】 。 include <iostream> using namespace std; template <typename T> T fun(T a, T b) {return (a<=b)a:b;} int main( ) { cout<<fun(3,6)<<’,’<<fim(3.14F, 6.28F)<<end 1; return 0; }
[填空题]程序的输出结果是 【15】 。 #include <iostream> using namespace std; class A{ public: A( ){a=b=2;} A(int i,int j){a=i;b=j;} void display( ){cout<<a<<b;} private: int a,b; }; void main( ){ A m,n(4,8); m.display( ); n.display( ); }
[填空题]以下程序的输出结果是 【9】
#include <iostream>
using namespace std;
void fun( )

static int a=0;
a+=2;
cout<<a;

int main( )

int CC;
for(CC=1;cc<4;CC++)
fun( );
cout<<end1;
return 0;

[填空题]下列程序的输出结果是 【12】 。 #include <iostream> using namespace std; int main( ) { int i=5; int &r=i; r=7; cout<<i<<end1; return 0; }
[填空题]下列程序的输出结果是 【9】 。 #include<iostream> using namespace std; int main( ){ int i=3; int &r=i; r=5; cout<<i<<endl; return 0; }
[填空题]以下程序的输出结果是 【10】
#include <iostream>
using namespace std;
int main( )

char S[ ]="abcdef";
s[3]=’\0’;
cout<<s<<end1;
return 0;

[填空题]下列程序的输出结果是 【15】 。 #include <iostream> using namespace std; template <typename T> T total(T* data) { Ts=0; while(*data) { s+=*data++; } return s; } int main( ) { int x[]={2,4,6,8,0,12,14,16,18}; cout<<total(x)<<end1; return 0; }
[单项选择]有以下程序,其输出结果是( )。
#include <iostream>
using namespace std;
int main( )
char a[10]=’1’,’2’,’3’,’4’,’5’,’6’,’7’,’8’,’9’,0,*p;
int i=8;
p=a+i;
cout<<p-3<<endl;
return 0;

A. 6789
B. 6
C. 789
D. ’6’
[填空题]下列程序的输出结果是______。
#include <iostream>
using namespace std;
class base
public:
int n;
base(int x)n=x;
virtualvoid set(int m)n=m;cout<<n<<’ ’;
;
class deriveA:public base
public:
deriveA(int x):base(x)
void set(int m) n+=m,cout<<n<<’ ’;
;
class deriveB:public base
public:
deriveB(int x):base(x)
void set(int m) n+=m; cout<<n<<’ ’;
;
int main( )

deriveA.d1(1);
deriveB.d2(3);
base *pbase;
pbase=&d1;
pbase->set(1);
pbase=&d2;
pbase->set(2);
return 0;

[填空题]下面程序的打印结果是 【11】
#include <iostream>
using namespace std;
class Base

public:
Base(int x)

a=x;

void show( )

cout<<a;

private:
int a;
;
class Derived : public Base

public:
Derived(int i) :Base(i+1) ,b(i)
void show( )

cout<<b;

private:
int b;
;
int main ( )

Base b(5) , *pb;
Derived d(1);
pb=&d;
pb->show( );
return 0;

[填空题]执行下面程序输出的是______。
#include <iostream>
using namespace std;
template <typename T>
T total(T *data)
Ts=0;
while( *data) s+=*data++;
return s;

int main( )
int s[]=1,3,5,7,0,2,4,6,8;
cout<<total(s);
return 0;

[填空题]下面程序的打印结果是______。
#include <iostream>
using namespace std;
class Base

public:
Base(int x)

a=x;

void show( )

cout<<a;

private:
int a;
;
class Derived : public Base

public:
Derived(int i) :Base(i+1) ,b(i)
void show( )

cout<<b;

private:
int b;
;
int main ( )

Base b(5) , *pb;
Derived d(1);
pb=&d;
pb->show( );
return 0;

[填空题]以下程序的执行结果是______。
#include <iostream>
using namespace std;
class base

public:
virtual void who( ) cout<<"Base Class"<<endl;
;
class Derived1: public Base

public:
virtual void who( ) cout<<"Derived1 Class"<<endl;
;
class derived2: public Base

public:
virtual void who( ) cout<<"Derived2 Class"<<endl;
;
int main(int argc, char *argv[ ])

base obj1,*p;
derived1 obj2;
derived2 obj3;
p=&obj1; p->who( );
p=&obj2; p->who( );
p=&obj3; p->who( );
return 0;

[填空题]下面程序的输出结果为______。
#include <iostream>
using namespace std;
void initialize(int printNo,int state=0);
void initialize(int printNo=l,int state);
int main( )

initialize( );
return 0;

void initialize(int printNo,int state)

cout<<printNo<<","<<state<<endl;

我来回答:

购买搜题卡查看答案
[会员特权] 开通VIP, 查看 全部题目答案
[会员特权] 享免全部广告特权
推荐91天
¥36.8
¥80元
31天
¥20.8
¥40元
365天
¥88.8
¥188元
请选择支付方式
  • 微信支付
  • 支付宝支付
点击支付即表示同意并接受了《购买须知》
立即支付 系统将自动为您注册账号
请使用微信扫码支付

订单号:

请不要关闭本页面,支付完成后请点击【支付完成】按钮
恭喜您,购买搜题卡成功
重要提示:请拍照或截图保存账号密码!
我要搜题网官网:https://www.woyaosouti.com
我已记住账号密码