数字转换为字符串:String:convert an int to a string

来源:互联网 发布:汽车改装模拟软件 编辑:程序博客网 时间:2024/06/05 01:09

// QuickSort.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include "iostream"
using namespace std;
char* ltoa( int n)
{
 int count=0;
 int m=n;
 int l=1;
 if(m<0)
 {
  count++;
  m=-m;;
 }
 while(m/l>0)
 {
  count++;
  l=l*10;
 }
 l=l/10;
 char *s=(char*)malloc(sizeof(char)*count+1);
 char* head=s;
 if(n<0)
 {
  *s='-';
  s++;
  n=-n;
 }
 while(l>0)
 {
  *s=n/l+'0';
  n=n%l;
  l=l/10;
  s++;
 } 
 *s='/0';
 return head;
}

 

int _tmain(int argc, _TCHAR* argv[])
{
 long int num =-123456;
 char* s=ltoa(num);
 cout<<s;
    cin.get();
 return 0;
}