读取字符列表并存储在数组中

时间:2014-04-11 17:02:01

标签: c++ c

我遇到以下代码的问题,我无法弄清楚为什么没有打印出循环。使用此代码,我希望程序忽略用户输入的任何空格,并在输入空格后,先前输入的数字存储在数组位置。像这样我希望将6和78存储在2个阵列位置,而不是将它们单独存储为6 7 8。

这是我的代码:

while ((in=getchar()) != '0')
{
    if (in == ' ')
    {
        printf("space\n ");
        continue;
    }
    else
    {
        printf("assigning\n ");
        input[i]=in;
    }
    i++;
}
printf("Out of Loop");

输入5 6 78时的输出是: 分配 空间 分配 空间 分配 分配 分配

有了这个输出,我怀疑78是否存储在一个存储位置。

我非常感谢你的帮助,谢谢你

3 个答案:

答案 0 :(得分:2)

C ++:

std::vector<int> v;
std::string s;
int i;

std::getline( std::cin, s);         // read full line with whitespaces
std::istringstream iss( s);         // prepare to process the line
while( iss >> i) v.push_back( i);   // read into i and push into vector if 
                                    // operator>> was successful

C:

int array[ 10];
int i = 0, retval;

while( i < 10 && ( retval = scanf( "%d", &array[ i++])) == 1) ; 

if( i == 10) {
    // array full
}

if( retval == 0) {
    // read value not an integer. matching failure
}

if( retval == EOF) {
    // end of file reached or a read error occurred
}

答案 1 :(得分:0)

你是逐个角色决定的。因此,您只会存储单个数字或忽略这些数字。

你可以像这样存储整个数字(扩展你的代码):

bool currentNumberStarted = false;
int currentNumber = 0;
int idx = 0;
while ((in=getchar()) != '0')// you probably want '\0' instead of '0'
{
    if (in == ' ')
    {
                    if (currentNumberStarted)
                    {
                        input[idx]=currentNumber;
                        idx++;
                        currentNumberStarted = false;
                    }
        printf("space\n ");
        continue;
    }
    else
    {
        printf("assigning\n ");
                    currentNumberStarted = true;
                    currentNumber *= 10;
        currentNumber += in;
    }
}
printf("Out of Loop");

答案 2 :(得分:0)

首先,我非常怀疑你的while循环将会结束,即使你是'\0',因为你使用char变量来存储输入。不是字符串,最后只有字符串使用'\0',我们如何输入&#39; \ 0&#39;从键盘.. ???。即使你想把它保持为'0',你也必须输入0作为结束循环的最后一个数字(我认为你不想这样做。)

所以解决方案就是: -

输入数字后,您将按ENTER键,这将生成换行符&#39; \ n&#39;所以你必须检查新的行字符('\n'),并且当你使用getchar()函数时,它将在输入结束时返回EOF(-1),因此检查它也很重要。所以你必须检查&#39; \ n&#39;在while循环中同时执行EOF。最后,您还应该检查存储数字的数组索引号(应该小于1)。

我努力让你在评论中理解这个程序。

int main()
{
  int i=0;
  int input[10]={0}; //here only 10 integers can be entered(hence i should be i<10)
  int in;     //To store input character
  int num=0;  //To store number which is converted from character.
  int new=1;  //To check if new number is started 0=false 1=True.
  int count=0;//This is just to know how many numbers entered,also used to print numbers at end.

  while ((in=getchar()) != '\n' && (in!=EOF) && i<10)//should check for both '\n' and EOF and array index also
  {
      if (in == ' ')
      {
         printf("space\n ");
         if(new==0) //if new Number is not started yet.
         {
            new=1;  //Start of a New number.(a number entered after space)
            i++;  //As new number is started it should be stored in new array index.
         }
         continue; //if space is entered just go to begining
      }
      else
      {
         printf("assigning\n ");
         num=in-48;  //converts a character to number (ex:- converts '3' to 3)
         input[i]=(input[i]*10)+num;  //storing the number..This is important do a paper work to understand this step.
         new=0;  //still in same number(we are still processing same number)
      }
  }
  printf("Out of Loop \n");

  count=i+1;  //This gives correct count of numbers entered

  for(i=0;i<count;i++)  //to print numbers.
     printf("%d ",input[i]);
return 0;
}

<强>输出: -

E:&GT; example.exe

78 2 65 998 1

分配

分配

空间

分配

空间

空间

分配

Out of Loop

78 2 65 998 1