题目详情
当前位置:首页 > 职业培训考试
题目详情:
发布时间:2024-07-28 02:31:24

[填空题]下列程序的输出结果是______。 #include<iostream.h> #include<string.h> using namespace std; void fun(const char*s,char &C) {c=s[strlen(s)/2];} int main( ) { char str[]="ABCDE"; char ch=str[1]; fun(str,ch); cout<<ch; return 0; }

更多"下列程序的输出结果是______。 #include<iostre"的相关试题:

[填空题]以下程序运行时输出到屏幕的结果是【16】 。 #include #include void main( ) { int i=0,n=0;char s[80],*p; strcpy(s,"It is a book."); for(p=s;p!=’/0’;p++) if(*p==’ ’) i=0; else if(i==0) {n++;i=1; } printf("%d/n",n); }
[填空题]下面程序的输出结果是 【15】 。 #include<iostream.h> #include<math.h> class point { double x; double y; public: point(doublea,d double B) { x=a; y=b; } friend double distance (point a,point B) ; }; double distance (point a,point B) { return sqrt((a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y)); } void main( ) { point p1(1,2); point p2(5,2); cout<<distance(p1,p2)<<end1; }
[填空题]以下程序运行后的输出结果是 【14】
#include <iostream>
#include <string>
using namespace std;
class Y;
class X

int x;
char *strx;
public:
X(int a, char *str)

x=a;
strx=new char[strlen(str)+l];
strcpy(strx,str);

void show(Y &ob) ;
;
class Y

private:
int y;
char *stry;
public:
Y(int b,char *str)

y=b;
stry=new char[strlen(str)+l];
strcpy(stry, str);

friend void X::show(Y &ob) ;
;
void X::show(Y &ob)

cout<<strx<<",";
cout<<ob.stry<<end1;

int main( )

X a(10,"stringX");
Y b(20,"stringY");
a. show (B) ;
return 0;

[填空题]以下程序运行后的输出结果是______。
#include <iostream>
#include <string>
using namespace std;
class Y;
class X

int x;
char *strx;
public:
X(int a,char *str)

x=a;
strx=new char[strlen(str)+1];
strcpy(strx,str);

void show(Y &ob) ;
;
class Y

private:
int y;
char *stry;
public:
Y(int b,char *str)

y=b;
stry=new char[strlen(str)+1];
strcpy(stry, str);

friend void X::show(Y &ob) ;
;
void X::show(Y &ob)

cout<<strx<<",";
cout<<ob.stry<<end1;

int main( )

X a(10,"stringX");
Y b(20,"stringY");
a. show (b) ;
return O;

[填空题]以下程序运行后的输出结果是 【17】 。 #include <stdio, h> #include <string, h> main( ) { char ch[] ="abc".,x[3] [4]: int i: for(i=0;i<3:i ++) strcpy(x[i] ,ch): for(i =0;i<3:i++) printf( "% s" ,&x[i] [i]); printf(" /n" ) }
[填空题]以下程序的输出结果是(  )。 #include #include #include mian( ) { char *p, *q, *r; p=q=r=(char *)malloc(sizeof(char)*20); strcpy(p,”attaboy,welcome!”); printf(“%c%c%c/n”,p[11], q[3], r[4]); free(p); }
[填空题]以下程序的执行结果是 【12】 。 #include<iostream.h> #include<iomanip.h> void pnnt(int n) { if (n!=0) { Print(n-1); for (int i=1;i<=n;i++) cout<<setw(3)<<i; cout<<endl; } } void main( ) { print(4); }
[单项选择]如下程序的输出结果是
#include<iostream>
#include<iomanip>
using namespace std;
class CSum
int x,y;
public:
CSum(int x0,int y0):X(x0),y(y0)
friend ostream& operator<<(ostream& os,const CSum& xA)
os<<setw(5)<<xa.x+xa.y:
return os;


int main( )
CSum y(3,5);
cout<<setfill('*')<<8;
cout<<y;
return 0;

A. 88
B. ****88
C. ****8****8
D. 8****8
[填空题]以下程序的执行结果是______。 #include<iostream.h> #include<stdliB.h> class Sample { public: int x, y; Sample( ){x=y=0;} Sample(int a, int b){x=a;y=b;} void disp( ) { cout<<"x="<<x<<", y="<<y<<end1; } }; void main( ) { Sample s1(2,3); s1.disp( ); }
[填空题]下列程序的执行结果是______。 #include<iostream.h> #include<iomanip.h> using namespace std; voidmain( ) { cout<<setfill(’x’)<<setw(10); cout<<"Hello"<<end1; }
[填空题]下面程序的执行结果是______。 #include<iostream.h> #include<iomanip.h> using namespace std; void main( ) { cout<<setfill(’x’)<<setw(10); cout<<"Hello"<<endl; }
[填空题]下列程序输出结果是 【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;

[单项选择]以下程序输出结果是( ):
#include<iostream>
using namespace std;
void add(int x,int y,int *z)

*z=y+x;

int main( )

int a,b,c;
add(8,4,&a);
add(6,a,&b);
add(a,b,&c);
cout<<a<<","<<b<<","<<c<<end1;
return 0;

A. 12, 10, 14
B. 12, 18, 30
C. 12, 6, 18
D. 12, 14, 30
[单项选择]以下程序输出的结果是()
#include<stdio.h>
#include<string.h>
main( )
charw[][10]="ABCD","EFGH","IJKL","MNOP"1,k;
for(k=1;k<3;k++) printf("%s/n",&w[k][k]);
A. ABCD
B. ABC
C. EFG
D. FGH
[单项选择]如下程序的输出结果是 #include<iostream> #include<cstring> using namespace std; class XCF{ int a; public: XCF(int aa=0):a(aA) {cout<<"1";} XCF(XCF&X){a=x.a;cout<<"2";l ~XCF( ){cout<<a;} int Geta( )t return a;} }; int main( ){ XCF d(15),d2(d1); XCF*pd=new XCF(8); cout<<pd->Geta( ); delete pd; return 0; }
A. 1215588
B. 1218855
C. 12185
D. 128512
[单项选择]如下程序的输出结果是 #include<lostream> #include<cstring> using namespace std; class XCD{ char*a; int b; public: XCD(char*aa,int bB) { a=new char[strlen(aA) +1]; strcpy(a,aA) ; b=bb; } char*Geta( ){return a;} int Getb( ){return b;} }; int main( ){ char*pl="abcd",*p2="weirong": int dl,6,d2=8; XCD x(pl,d1),y(p2,d2); cout<<strlen(x.Geta( ))+y.Getb( )<<endl; return 0; }
A. 12
B. 16
C. 14
D. 11

我来回答:

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

订单号:

截图扫码使用小程序[完全免费查看答案]
请不要关闭本页面,支付完成后请点击【支付完成】按钮
恭喜您,购买搜题卡成功
重要提示:请拍照或截图保存账号密码!
我要搜题网官网:https://www.woyaosouti.com
我已记住账号密码