下面程序的输出结果是【 】。 #include 〈iostream〉 using namespace std; void f(int x) { if(x) { cout.put(’0’+x

admin2010-03-29  25

问题 下面程序的输出结果是【  】。
   #include 〈iostream〉
   using namespace std;
   void f(int x)
   {
      if(x)
      {
         cout.put(’0’+x%10);
         f(x/10);
      }
   }
   int main()
   {
      f(11001);
      return 0;
   }

选项

答案10011

解析 本程序中f函数的功能是将传入的实参按倒序方式将各位数字输出。
转载请注明原文地址:https://jikaoti.com/ti/cxW0FFFM
0

最新回复(0)