首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
下面程序的输出结果是【 】。 #include <iostream> using namespace std; int x; void funA(int&,int); void funB(int,int&); int
下面程序的输出结果是【 】。 #include <iostream> using namespace std; int x; void funA(int&,int); void funB(int,int&); int
admin
2013-02-27
20
问题
下面程序的输出结果是【 】。
#include <iostream>
using namespace std;
int x;
void funA(int&,int);
void funB(int,int&);
int main ( )
{
int first;
int second=5;
x=6;
funA(first,second) ;
funB(first,second) ;
cout<<first<<" "<<second<<" "<<x<<end1;
return 0;
}
void funA(int &a,int b)
{
int first;
first=a+b;
a=2*b;
b=first+4;
}
void funB(int u, int &v)
{
int second;
second=x;
v=second+4;
x=u+v;
}
选项
答案
10 10 20
解析
本题考核函数的引用传递。“引用”实际上是给一个已知变量起个别名,对引用的操作也就是对被它引用的变量的操作。函数funA()的第1个形参为引用形参,那么在函数内部形参a的改变将引起实参的相应改变。同理funB()中引用参数V的改变也会引起相应实参的改变。
转载请注明原文地址:https://kaotiyun.com/show/cpVp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
有以下程序: #include<stdio.h> main() { inta=1,b=3,c=5; int*p1=&a,*p2=&b,*p=&c; *p=*p1*(*p2); printf("%d\n",c); } 程
有以下程序 #include<stdio.h> #include<math.h> main() { ints;floatn,t,pai; t=1,pai=0,n=1.0,s=1; while(fabs(t)>1.0e-6)
以下程序段中的变量已正确定义 for(i=0;i<4;i++,i++) for(k=1;k<3;k++);printf("*"): 该程序段的输出结果是()。
有以下程序 #include<stdio.h> main() {inta=﹣2,b=2; for(;++a&&--b;) ; printf("%d,%d\n",a,b); } 程序运行后的输出结果是(
若变量已正确定义,有以下程序段“i=0;doprintf("%d,",i);while(i++);printf("%d\n",i);”,程序段的运行结果是()。
有以下函数: intaaa(char*s) { char*t=s: while(*t++); t--: return(t-s); } 以下关于aaa函数功能叙述正确的是()。
若函数调用时的实参为变量,下列关于函数形参和实参的叙述中正确的是()。
关键字ASC和DESC分别表示【】的含义。
随机试题
What’sWrongwithOurTeaching?Testinghasreplacedteachinginmostpublicschools.Myownchildren’sschoolweekisfoc
以下不属于Word2010缩进效果的是____________。
A.thatwouldbeniceB.it’stimeformetoseemyfriendsC.WhatcandoforyouD.ThanksforcomingsoquicklyE.
短时记忆的持续时间是
国家机关应当在国有或者国家控股的银行开立账户,不得在其他银行或非银行金融机构开立账户。()
下列关于外铄论的代表人物是()。
护士进行晨问护理的内容包括()。
左边给定的是纸盒的外表面图,下面哪一项不能由它折叠而成?
在时间估计准确性实验中,一只绿色小灯泡与电钟相连,主试按键让灯亮10秒,然后被试按键复制10秒的时间。这个实验中被试复制时间长度是()。
Thebesttitleforthetextmaybe______.WhatdoestheexampleoftheSmallpoxVaccineillustrate?
最新回复
(
0
)