正如标题所说,需要一个能够计算数字中相同数字的代码。
例如:
如果我输入54678,它会显示该整数中使用了多少个数字。
12341 -- You used number 1 two times
88888 -- You used number 8 five times
感谢您的帮助,我还在学习c ++
修改
#include <iostream>
using namespace std;
int getNumber ()
{
int x;
cout << "Enter a long number: ";
cin >> x;
return x;
}
int getDigit ()
{
int y;
cout << "Enter a single digit (0-9): ";
cin >> y;
return y;
}
int digitCounter ( int x, int y )
{
if ( x < 10 )
{
if ( x == y )
return 1;
return 0;
}
return digitCounter (x%10, y) + digitCounter (x/10, y);
}
int main()
{
int number = getNumber();
int digit = getDigit();
int count = digitCounter( number, digit );
cout<< "The digit " << digit << " appeared " << count << " time";
if ( count != 1 )
cout << "s";
cout << "." <<endl;
return 0;
}
答案 0 :(得分:0)
您可以输入数字作为字符串,然后解析字符串。
答案 1 :(得分:0)
你可以使用这样的函数,其中n是数字,d是你想要计算的数字:
int count_dig(int n, int d) {
int result = 0;
while (n > 0) {
if (n % 10 == d) {
result++;
}
n/=10;
}
return result;
}
使用此功能,您可以打印格式化结果,如:
printf("%d -- You used digit %d %d times.", n, d, count_dig(n, d));