不使用库函数将整数转换为字符串或将字符串转换为整数

1. 将整数转换为字符串:

  1. // 字符串处理函数.cpp : 定义控制台应用程序的入口点。  
  2. //  
  3.   
  4. #include "stdafx.h"  
  5. #include <iostream>  
  6. using namespace std;  
  7. //不使用库函数将整数转换为字符串  
  8. void int2str(int value,char *string){  
  9.     if (string==NULL)//如果string为NULL,直接返回  
  10.     {  
  11.         return;  
  12.     }  
  13.     int i=0,len=0;  
  14.     int absolute=value>0?value:-value; //取value的绝对值  
  15.     char str[20]="";  
  16.     while (absolute) {//把absolute的每一位上的数存入str  
  17.   
  18.         str[i++]=absolute%10+'0';   
  19.         absolute/=10;   
  20.     }  
  21.   
  22.     len=i;  
  23.   
  24.     if (value<0)//如果是负数,需要多出来一位存储负号‘-'  
  25.     {  
  26.         len+=1;  
  27.         for (int j=i-1;j>=0;j--)  
  28.             string[len-1-j]=str[j];  
  29.         string[0]='-';  
  30.     }  
  31.     else//如果是整数,直接拷贝  
  32.         for (int j=i-1;j>=0;j--)  
  33.             string[len-j-1]=str[j];  
  34.     }  
  35.     string[len]='\0';//末尾添加结束符  
  36. }  
  37.   
  38.   
  39. int _tmain(int argc, _TCHAR* argv[])  
  40. {  
  41.     int nNum;  
  42.     char string[20];  
  43.     cout<<"Please input an integer:";  
  44.     cin>>nNum;  
  45.     cout<<"output:";  
  46.     int2str(nNum,string);  
  47.     cout<<string<<endl;  
  48.     system("pause");  
  49.     return 0;  
  50. }  
2. 将字符串转换为整数

  1. // 字符串处理函数.cpp : 定义控制台应用程序的入口点。  
  2. //  
  3.   
  4. #include "stdafx.h"  
  5. #include <iostream>  
  6. using namespace std;  
  7.   
  8. //不使用库函数将字符串转换为数字  
  9. int str2int(const char *str){  
  10.     int num=0,dig=1;  
  11.     if (str==NULL)  
  12.     {  
  13.         return -1;  
  14.     }  
  15.     while (*str==' '){ //滤掉开头的空格  
  16.         str++;  
  17.     }  
  18.     if (*str=='+')  
  19.     {  
  20.         str++;  
  21.     }  
  22.     if (*str=='-')//如果开头有"-"使dig=-1  
  23.     {  
  24.         str++;  
  25.         dig*=-1;  
  26.     }  
  27.     while (*str!='\0')  
  28.     {  
  29.         num=num*10+(*str++-'0');  
  30.         if (*str<'0'||*str>'9')//如果遇到非数字则跳出循环  
  31.         {  
  32.             break;  
  33.         }  
  34.     }  
  35.     num*=dig;  
  36.     return num;  
  37. }  
  38. int _tmain(int argc, _TCHAR* argv[])  
  39. {  
  40.     int num=0;  
  41.     char str[10]="";  
  42.     cin.getline(str,10);  
  43.     num=str2int(str);  
  44.     cout<<num<<"\n";  
  45.     system("pause");  
  46.     return 0;  
  47. }  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值