| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 674 人关注过本帖
标题:atoi问题
取消只看楼主 加入收藏
hlershi
Rank: 1
等 级:新手上路
帖 子:6
专家分:1
注 册:2009-8-11
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:1 
atoi问题
#include<iostream>
#include<cstdlib>
#include<cctype>
void read_and_clean(int& n);
void new_line();
int main()
{
  using namespace std;
  int n;
  char ans;
  do
    {
     cout<<"enter the number:\n";
     read_and_clean(n);
     cout<<"the cleam number is:"<<n<<endl;
     cout<<"Angin?(yea/no)";
     cin>>ans;
     new_line();
    }while((ans!='n')&&(ans!='N'));
    return 0;
}
   void read_and_clean(int& n)

   {
     using namespace std;
     const int ARRAP_SIZE=6;
     char digit_string[ARRAP_SIZE];
     char next;
     cin.get(next);
     int index=0;
     while (next!='\n')
    {
    if((isdigit(next))&&(index<ARRAP_SIZE-1))//在这里isdigit的作用是什么,什么去掉之后输入$100后就返回0而不是100了
      {
       digit_string[index]=next;
       index++;
       }
      cin.get(next);
    }
digit_string[index]='\0';
n=atoi(digit_string);//书上说:如果参数不与一个int值对应 atoi就返回0为什么输入$100时这里反回100而不是0


   }
   void new_line()
   {
    using namespace std;

     char symbol;
     do
     {
     cin.get(symbol);
      }while(symbol!='\n');
   }
我是新手希望大虾们能说清楚一点谢谢!
搜索更多相关主题的帖子: 一个程序问题 
2009-08-11 21:55
hlershi
Rank: 1
等 级:新手上路
帖 子:6
专家分:1
注 册:2009-8-11
收藏
得分:0 
还有,为什么去掉n=atoi(digit_string);返回的是一个垃圾值?
2009-08-11 22:00
快速回复:atoi问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.026983 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved