有以下程序: #include<iostream.h> void fun(int a, int b, int c) { a=456,b=567,c=678;} void main( ) { int x=10,y=

admin2010-12-16  19

问题 有以下程序:    #include<iostream.h>    void fun(int a, int b, int c)    {  a=456,b=567,c=678;}    void main( )    {       int x=10,y=20,z=30;       fun(x, y, z) ;       cout < < x< < ’,’ < < y < < ’,’ < < z < < endl;    }    输出结果是

选项 A、30,20,10
B、10,20,30
C、456,567,678
D、678,567,456

答案B

解析 本题考查函数中变量的作用范围,在主函数中给变量x、y、z赋值,然后将其作为实参传递给了函数fun( ) ,虽然在函数fun( ) 中改变了这3个变量的值,但只是同名的局部变量,不影响函数中变量的值,所以在调用函数fun( ) 结束后,主函数3个变量的值未改变。
转载请注明原文地址:https://kaotiyun.com/show/9FVp777K
0

最新回复(0)