首页 > 代码库 > 自己实现atoi函数
自己实现atoi函数
#include <iostream>
#include <string>
using namespace std;
// 自己实现atoi函数的过程
int My_atoi(const char * p);
int main()
{
string s;
cout << "请输入一个字符串:";
cin >> s;
cout<<"经过转换为整形为:"<<My_atoi(s.c_str())<<endl;
system("pause");
return 0;
}
int My_atoi(const char * p)
{
int flag = 1 ,result = 0;
if (*p >= ‘0‘ && *p <= ‘9‘ || ‘-‘ == *p || ‘+‘ == *p)
if (‘-‘ == p[0])
{
flag = -1;
p++;
}
else if (‘+‘ == p[0])
p++;
while (*p <= ‘9‘ && *p >= ‘0‘)
result = 10 * result + (*p++ - ‘0‘);
return flag * result;
}
#include <string>
using namespace std;
// 自己实现atoi函数的过程
int My_atoi(const char * p);
int main()
{
string s;
cout << "请输入一个字符串:";
cin >> s;
cout<<"经过转换为整形为:"<<My_atoi(s.c_str())<<endl;
system("pause");
return 0;
}
int My_atoi(const char * p)
{
int flag = 1 ,result = 0;
if (*p >= ‘0‘ && *p <= ‘9‘ || ‘-‘ == *p || ‘+‘ == *p)
if (‘-‘ == p[0])
{
flag = -1;
p++;
}
else if (‘+‘ == p[0])
p++;
while (*p <= ‘9‘ && *p >= ‘0‘)
result = 10 * result + (*p++ - ‘0‘);
return flag * result;
}
自己实现atoi函数
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。