我正在尝试找到一种方法从整数中分别获得 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
}
上面的代码只是输入数字,但我想以某种方式分隔数字......但是如何?