2

我正在尝试找到一种方法从整数中分别获得 5 位数字。

cin >> option;      // Option to enter a number(don't worry about this)
if (option == 1)    // The option(don't worry)
{
    cout << " enter 5 digit key 0 to 9 \n";
    readin(key);    // The input number that needs the digits to be separated
}

上面的代码只是输入数字,但我想以某种方式分隔数字......但是如何?

4

5 回答 5

4

像这样的东西:

// handle negative values
key = ABS(key);

while(key > 0)
{
    // get the digit in the one's place (example: 12345 % 10 is 5)
    int digit = key % 10;

    // remove the digit in the one's place
    key /= 10;
}
于 2011-12-01T02:43:37.110 回答
2

为什么不单独读取每个输入并单独处理它们?

IE

cout<< " enter 5 digit key 0 to 9 \n";
char str[5];
cin.get(str, 5);

for (int i = 0; i < 5; ++i)
{
    //do something with str[i];
}
于 2011-12-01T03:15:37.790 回答
1

您可以使用以下代码片段,它将在while循环中以相反的顺序分隔数字。

int i;
cin >> i;

while (i%10 != 0) 
{
  cout << i%10 << endl;
  i = i/10;
}
于 2011-12-01T08:04:09.623 回答
0

while 循环方法只会处理没有零的数字。

于 2013-12-14T14:33:51.480 回答
0
#include <iostream>
#include <string>
using namespace std;

int main()
{
  string str;
  cin >> str;

  size_t len = str.size();
  len = len > 5 ? 5 : len;

  for (size_t i=0; i<len; ++i)
  {
    cout << "digit " << i << " is: " << (str[i] - '0') << endl;
  }

  return 0;
}

我这样做

于 2013-12-14T14:51:09.847 回答