answersLogoWhite

0

To count the number of times a digit occurs in an integer, start by initializing an array of ten counts of digits, such as int digits[10];

Then, in a loop while the number is non zero, increment the element in the digits array that corresponds to the units digit, and then divide the number by ten, such as digits[number%10]++ and number/=10;

int digits[10];
int i;
int number = some number;

for (i=0; i<10; i++) digits[i]=0;
do (digits[number%10]++; number/=10) while (number != 0);

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

How do you write a visual basic program to sum the odd number digits of a 12 digit code using division and Mod and while loops?

Function sum_odd_digits(ByVal number As Integer) As Integer Dim digit As Integer sum_odd_digits = 0 While number &lt;&gt; 0 digit = number Mod 10 If digit And 1 Then sum_odd_digits = sum_odd_digits + digit number = number / 10 End While End Function


How do you Write a program that determines the number of occurrences of each digit in a given integer n?

there could be a part in it like this: int num, digit; int count [10]; do { digit = num%10; num != 10; ++count[digit]; } while (num);


How would you write a program that read an integer for display each of digit of integer in English?

Use an enum if you are using a c style language. Or a map data structure. Assign each integer an English value and then match it to what the user inputs.


What is the sum of largest 4-digit positive integer and smallest 3-digit negative integer?

1


What is an integer digit?

dvve evd


What is the smallest three digit?

The smallest three digit integer is 100


What is the sum of smallest and largest 5 digit whole number?

The smallest 5 digit integer is -99999. The largest 5 digit integer is 99999. The sum is therefore 0.


What is the value of the unit digit 12.04?

The unit digit of a number is the digit in the ones place, which is the integer part of the number. In the case of 12.04, the integer part is 12, and the unit digit is 2. Therefore, the value of the unit digit in 12.04 is 2.


Is a decimal integer?

A decimal number can be an integer. All that decimal means is that the place value of each digit is ten times that of the digit to its right.


What program can read n number must contain four- digits only and if the second left digit odd put it in an array if not ignore it?

Input the number as a string. If the string has a length of 4 and contains only digits, convert the string to an integer. If the integer is less than 1000, input another number. Otherwise, copy the integer and divide by 100 to get rid of the two least-significant digits. Divide again by 2 and take the remainder. If the remainder is 1 then the second left digit of the 4-digit integer is odd and the 4-digit integer can be added to the array, otherwise do not add it. Repeat for all n numbers.


What is another name for an integer?

'Number' or 'digit'.


What is the greatest two digit integer?

99