更多"以下程序执行后的输出结果是( )。 #include<iostre"的相关试题:
[单项选择]以下程序执行后的输出结果是()。
#include <iostream>
using namespace std;
void try(int,int,int,int);
int main ( )
int x,y,z,r;
x=1;
y=2;
try(x,y,z,r);
cout<<r<<end1;
return 0;
void try(int x,int y, int z,int r)
z = x+y;
x = X*X;
y = y*y;
r = z+x+y;
A. 18
B. 9
C. 10
D. 不确定
[填空题]以下程序的输出结果是 【8】 。
#include<iostream>
using namespace std;
int main( ){
int sum,i;
for(sum=0,i=1;i<5;i++)sum+=i;
cout<<sum<<endl;
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;
[单项选择]以下程序执行后的输出结果是
#include<iostream>
using namcspace std;
void try(int,int,int,int);
int main( )
int x,y,z,r;
x=1;
y=2;
try(x,y,z,r);
cout<<r<<end1;
return 0;
void try(int x,int y, int z,int r)
z = x+y;
x = x*x;
y = y*y;
r = z+x+y;
A. 18
B. 9
C. 10
D. 不确定
[填空题]下面程序执行的结果是 【14】
#include<iostream>
using namespace std;
class A{
public:
static int x;
A(inty){cout<<x+y;}
};
int A::x=2;
void main( ){
A a(5);
}
[填空题]下列程序的输出结果是 【13】
#include<iostream>
using namespace std;
template<typenameT>
Tfun(Ta,TB) {return (a<=B) a:b;}
int main ( )
{
cout<<fun(3,6)<<’,’<<fun(3.14F,6.28F)<<end1;
return 0;
}
[填空题]以下程序执行后输出的结果是 【11】 。
#include<iostream>
using namespace std;
int fac(int a,int b){
return(b-a)*a;
}
int main( ){
int x=3,y=4,z=5,result;
result=fac(fac(x,y),fac(x,z));
cout<<result<<endl;
return 0;
}
[单项选择]以下程序执行后的输出结果是( )。
#include <iostream>
using namespace std;
void try(int,int,int,int);
int main( )
int x,y,z,r;
x=1;
y=2;
try(x,y,z,r);
cout<<r<<endl;
return 0;
void try(int x,int y,int z,int r)
z=x+y;
x=x*x;
y=y*y;
r=z+x+y;
A. 18
B. 9
C. 不确定
[填空题]以下程序执行后输出的结果是 【11】 。
#include<iostream>
using namespace std;
int fac(int a,int b)
return(b-a)*a;
int main( )
int x=3,y=4,z=5,result;
result=fac(fac(x,y),fac(x,z));
cout<<result<<endl;
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
[填空题]执行下面程序输出的是 【15】 。
#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;
int main( )
cout.fill('*');
cout.width(5);
cout<<hex<<100<<endl;
return 0;
A. **100
B. ***64
C. 100**
D. 64***
[单项选择]以下程序的运行结果是()。
#include<iostream>
using namespace std;
const double PI=3.14:
class Point
int x,y;
public:
Point(int a,int b)x=a;y=b;
int getx( )return。;
int gety( )return y;
;
class Circle:public Point
int r,
public:
Circle(int a,int b,int c):Point(a,b) r= c;
int getr( )return r;
double area( )return PI*r*r;
;
int main( )
Circle c1(5 ,7 ,10);
cout<<c1.area( )<<endl;
return 0,
A. 25
B. 49
C. 100
D. 314
[单项选择]以下程序的输出结果是( )。
#include<iostream>
using namespace std;
void fun(char**q)
++q;
cout<<*q<<end1;
main( )
static char* s []= "HI","HELLO","TEST";
char**p;
p=s;
fun(p);
system("PAUSE");
return 0;
A. 为空
B. HI C) HELLO D) TEST
[单项选择]对下列程序的描述正确的是( )。
#include <iostream>
using namespace std;
int fuc(int,int);
int main( )
cout<<fuc(1,10)<<endl;
return 0;
int fuc(int x,int y)
return x*x+y*y;
A. 该函数的定义和调用方式都是错误的
B. 该函数的定义和调用方式都是正确的
C. 该函数调用方式正确,但函数定义错误
D. 函数定义正确,但函数调用方式错误
[填空题]以下程序的输出结果是 【8】 。
#include<iostream>
using namespace std;
int main( )
int sum,i;
for(sum=0,i=1;i<5;i++)sum+=i;
cout<<sum<<endl;
return 0;
[填空题]有以下程序:
#include <iostream >
using namespace std;
int main( )
{
int i=010,j=10;
cout<<(++i)<<",’<<j--<<end1;
return 0;
{
则该程序运行后的输出结果是 【6】 。
[单项选择]下列程序的输出结果是
#include"iostream"
using namespace std;
int Max(int a,int b)
{
if(a>b)
return a;
else
return b;
}
void main( )
{
int m,n;
m=10,n=5;
int max=Max(m,n);
cout<<max<<endl;
}
A. 10
B. 程序有误
C. 1
D. 0