Answers for "calculate number of digits in a number"

6

find number of digits in a number

floor(log10(n) + 1);
Posted by: Guest on February-20-2021
1

calc the number of digits

int count = 0;
int n = number;

while (n != 0)
{
    n /= 10;
    cout++;
}
Posted by: Guest on June-08-2021
0

number of digits calculation

number_of_digits = 0
    a_variable = input
    while a_variable >= 1:
        number_of_digits += 1
        a_variable /= 10
#Just translated Kind Kinkajou's answer to python.
#Please support him.
#Profile link: https://www.codegrepper.com/app/profile.php?id=341732
Posted by: Guest on August-10-2021

Code answers related to "calculate number of digits in a number"

Browse Popular Code Answers by Language