编写一个函数atoi,作用是将一个整数字符串转换成一个整数

说明:字符串是不能进行四则运算的,而整数是能进行四则运算的.函数原型为:intatoi(constchar*str);str是指向该字符串的指针变量,函数返回值为求出的整... 说明:字符串是不能进行四则运算的,而整数是能进行四则运算的.
函数原型为: int atoi(const char* str); str是指向该字符串的指针变量,函数返回值为求出的整数.
例如:atoi("-123")的返回值为整数-123.
用C++写急求各位大神帮忙!
展开
 我来答
百度网友da8a46e
推荐于2017-09-13 · TA获得超过7293个赞
知道小有建树答主
回答量:2307
采纳率:93%
帮助的人:186万
展开全部
#include <stdio.h>
#include <conio.h>
#include <string.h>
int fatoi(char str[])
{
int s=0,n,i=0,num=0;
n=strlen(str);
if(str[0]=='-')
i=1;
if(n>10)
return 0;
for (;i<n;i++)
{
num=(str[i]-48);
s=s+num;
if(i<n-1)
s=s*10;
}
if(str[0]=='-')
s=-s;
return s;
}
int main()
{
char sc[10]={"-12367890"}; // 调试程序用的数据
int n;
//gets(sc);
n=fatoi(sc);
printf("\n%d",n);
getch();
return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
laolaibibulai
推荐于2017-09-27 · TA获得超过358个赞
知道小有建树答主
回答量:225
采纳率:0%
帮助的人:228万
展开全部
#include <stdio.h>
#include <conio.h>
#include <string.h>
int fatoi(char str[])
{
int s=0,n,i=0,num=0;
n=strlen(str);
if(str[0]=='-')
i=1;
if(n>10)
return 0;
for (;i<n;i++)
{
num=(str[i]-48);
s=s+num;
if(i<n-1)
s=s*10;
}
if(str[0]=='-')
s=-s;
return s;
}
int main()
{
char sc[10]={"-12367890"}; // 调试程序用的数据
int n;
//gets(sc);
n=fatoi(sc);
printf("\n%d",n);
getch();
return 0;
}
代码没有优化,凑合用吧,对大于2的32次方的数据没有精确控制。
追问
用C++吧,C语言还没学看不太懂!
追答
#include 
#include
int fatoi(char str[])
{
int s=0,n,i=0,num=0;
n=strlen(str);
if(str[0]=='-')
i=1;
if(n>10)
return 0;
for (;i> n; // 借用该语句用于暂停动作
return 0;
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
avast590
2014-03-25 · 超过17用户采纳过TA的回答
知道答主
回答量:31
采纳率:0%
帮助的人:36.8万
展开全部
int atoi(const char *s)
{
static const char digits[] = "0123456789"; /* legal digits in order */
unsigned val=0; /* value we're accumulating */
int neg=0; /* set to true if we see a minus sign */

/* skip whitespace */
while (*s==' ' || *s=='\t') {
s++;
}

/* check for sign */
if (*s=='-') {
neg=1;
s++;
} else if (*s=='+') {
s++;
}

/* process each digit */
while (*s) {
const char *where;
unsigned digit;

/* look for the digit in the list of digits */
where = strchr(digits, *s);
if (where == 0) {
/* not found; not a digit, so stop */
break;
}

/* get the index into the digit list, which is the value */
digit = (where - digits);

/* shift the number over and add in the new digit */

val = val*10 + digit;

/* look at the next character */
s++;
}

/* handle negative numbers */
if (neg) {
return -val;
}

/* done */
return val;
}
更多追问追答
追问
编译不通过啊,where = strchr(digits, *s);
这个是什么意思,unsigned digit;
又是什么?
追答
不好意思, 还漏了一个函数,
char *strchr(const char *p, int ch)
{
for (;; ++p) {
if (*p == ch)
return((char *)p);
if (!*p)
return((char *)NULL);
}
/* NOTREACHED */
}

把这个加上
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友7c5bb56
2014-03-25
知道答主
回答量:14
采纳率:0%
帮助的人:21.6万
展开全部
int atoi(const char* str){
int n=0;
int flag=1;

int i=0;

if(str[0]=='-') flag=-1,i++;

if(str[0]=='+')flag=1,i++;
while(str[i]>='0'&&str[i]<='9'){
n=n*10+(str[i]-'0');

i++;

}

return n*flag;

}
追问
麻烦再写一下主函数谢谢!我写了一下主函数还是不对!
追答
#include
#include
int atoi(const char* str){
int n=0;
int flag=1;

int i=0;

if(str[0]=='-') flag=-1,i++;

if(str[0]=='+')flag=1,i++;
while(str[i]>='0'&&str[i]<='9'){
n=n*10+(str[i]-'0');

i++;

}

return n*flag;

}
int main(){
printf("%d\n",atoi("-132"));
return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
curdilin
2014-03-25
知道答主
回答量:22
采纳率:0%
帮助的人:8.6万
展开全部
google 或任何一本C函授书 答案岗岗的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式