1、c++编写将一个整数n转换成字符串的函数。在主函数中调用该函数并输出结果,从键盘输入n的值。
1、c++编写将一个整数n转换成字符串的函数。在主函数中调用该函数并输出结果,从键盘输入n的值。
日期:2018-05-14 22:09:25 人气:3
#include "stdafx.h"
#include
using namespace std;
void tran(char ch[],int n)
{
int i=0,j=0;
char temp;
//对n分别取最低位,储存在字符数组中
do{
ch[i++]=n%10+48; //0的ASCII码为48,所以要数值加48;同时,i自增
}while(n/=10); //当(n