更多"下列程序的输出结果是 [12] 。
#include<iostre"的相关试题:
[填空题]执行如下程序后的输出结果是 【15】 。
#include <iostream>
#include <fstream>
using namespace std;
int main ( )
char s[25];
ofstream fl("data.txt");
f1<<"C++ Programming";
f1.close ( );
ifstream f2 ("data.txt");
if (f2.good( )) f2>>s;
f2.close( );
cout<<s;
return 0;
[填空题]以下程序运行后的输出结果是 【10】 。
#include <iostream>
#include <string>
using namespace std;
class Y;
class X
iht 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:
iht 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<<endl;
int main( )
X a(10,"stringX");
Y b(20,"stringY");
a.show(b);
return 0;
[填空题]以下程序运行后的输出结果是 【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)+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;
}
[填空题]下列程序的执行结果是______。
#include<ioStream.h>
#include<iomanip.h>
using namespace std;
void main( )
cout<<setfill(’x’)<<setw(10);
cout<<"Hello"<<end1;
[单项选择]下列程序的执行结果是______。 #include<iostream.h> #include<stdlib.h> class TestClass { public: int x,y; TestClass ( ) {x=y=0;} TestClass (int a,int b){x=a;y=b;} void disp( ) { cout<<"x="<<x<<",y="<<y<<end1; } void main( ) TestClass s1(2,3); s1.disp( ); }
A. x=2,y=2
B. x=2,y=3
C. x=3,y=2
D. x=3,y=3
[填空题]以下程序的执行结果是______。
#include<iostream.h>
#include<iomanip.h>
void main( )
cout.fi1(’*’);
cout.width(10);
cout<<setiosflags(ios::hex)<<160<<endl;
cout.width(8);
cout<<160<<endl;
cout.width(4);
cout<<160<<endl;
[单项选择]下面程序输出的结果是
#include<iostream.h>
void main( )
inti;
int a[3] [3] =1,2,3,4,5,6,7,8,91;
for(i=0;i<3;i++)
cout < < a[2-i] [i] < < " "; A) 1 5 9 B) 7 5 3 C) 3 5 7 D) 5 9 1
[简答题]以下程序输出的结果是:
#include "stdio.h"
void main( )
{
char s[]="hello/nworld";
printf("%s",s);
}
[填空题]以下程序输出的结果是【 】。
#include<iostream.h>
voidmain( )
{
inta=5,b=4,c=3,d;
d=(a>b>c);
cout<<d;
}