xt4-10.cpp
上传用户:liubin
上传日期:2022-06-13
资源大小:85k
文件大小:0k
源码类别:

书籍源码

开发平台:

Visual C++

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {void convert(int n);
  5.  int number;
  6.  cout<<"input an integer:";
  7.  cin>>number;
  8.  cout<<"output:"<<endl;
  9.  if (number<0)
  10.   {cout<<"-";
  11.    number=-number;
  12.    }
  13.   convert(number);
  14.   cout<<endl;
  15.   return 0;
  16. void convert(int n)
  17.  {int i;
  18.   char c;
  19.   if ((i=n/10)!=0)
  20.     convert(i);
  21.   c=n%10+'0';
  22.   cout<<" "<<c;
  23.   }
  24.