C++中怎么把字符串string型的数字转换成整型int型的数字?
展开全部
int str2int( string str)
{
int i,len = str.size(),num = 0 ;
i = 0 ;
if (str[ 0 ] == ' - ' )
i = 1 ;
while (i < len)
{
num = num * 10 + ( int )(str[i] - ' 0 ' );
i ++ ;
}
if (str[ 0 ] == ' - ' )
num *= - 1 ;
return num;
}
string int2str( int num)
{
if (num == 0 )
return " 0 " ;
string str = "" ;
int num_ = num > 0 ? num : - 1 * num;
while (num_)
{
str = ( char )(num_ % 10 + 48 ) + str;
num_ /= 10 ;
}
if (num < 0 )
str = " - " + str;
return str;
}
展开全部
#include<iostream>
#include<string>
#include<sstream>
using namespace std;
int main(){
string s;
stringstream temp;
int num;
cin>>s;
temp<<s;
temp>>num;
cout<<num+1;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
有一定C++基础的人不难写出字符串到整数的转换代码
如果是初学者,考虑使用atoi函数(包含stdlib.h或者cstdlib函数,事实上,包含iostream就够了)
原型:
int atoi(const char *str);
用法:
std::string str="789";
int num=atoi(str.c_str());
std::cout<<num;
或者:
char str[]="789";
int num=atoi(str);
std::cout<<num;
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
string str("123");
int num = atoi(str.c_str());
int num = atoi(str.c_str());
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
我就不写函数了哈,你直接字符‘数字’-‘0’就得到数字了,例如字符4转成数字4则有:int num; num = '4'-'0'; num 就是数字4啦。采纳我哦
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询