编写程序用递归法实现将一个整数n转化成字符串

日期:2013-11-27 13:26:17 人气:1

编写程序用递归法实现将一个整数n转化成字符串

#ifndef myitoa_h #define myitoa_h bool myitoa(long n,char chars[],int arrlen) //参数: 数字n,存储转换后数字的数组,数组长度。 { static int out=0; static int length=1; static int count=0; count++; if(count==1) { for(int i =10;n
    A+
热门评论