编写一个函数atoi,作用是将一个整数字符串转换成一个整数
说明:字符串是不能进行四则运算的,而整数是能进行四则运算的.函数原型为:intatoi(constchar*str);str是指向该字符串的指针变量,函数返回值为求出的整...
说明:字符串是不能进行四则运算的,而整数是能进行四则运算的.
函数原型为: int atoi(const char* str); str是指向该字符串的指针变量,函数返回值为求出的整数.
例如:atoi("-123")的返回值为整数-123.
用C++写急求各位大神帮忙! 展开
函数原型为: int atoi(const char* str); str是指向该字符串的指针变量,函数返回值为求出的整数.
例如:atoi("-123")的返回值为整数-123.
用C++写急求各位大神帮忙! 展开
5个回答
展开全部
#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;
}
#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;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#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次方的数据没有精确控制。
#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;
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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;
}
{
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 */
}
把这个加上
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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 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;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
google 或任何一本C函授书 答案岗岗的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询