下面程序的运行结果为_____。 #include<iostream.h> void fun(int x=0,int y=0) { cout < < x < < y; } void main( ) {

admin2010-12-16  29

问题 下面程序的运行结果为_____。
   #include<iostream.h>
   void fun(int x=0,int y=0)
   {
   cout < < x < < y;
   }
   void main( )
   {
        fun(5) ;
   }

选项

答案50

解析 本题考查的是函数的默认参数,如果一个函数中有多个参数,则默认参数应从右至左逐个定义,所以题目中x使用参数5,y使用默认参数0。
转载请注明原文地址:https://jikaoti.com/ti/uyL0FFFM
0

最新回复(0)