Answers for "how many digits are in this number calculator"

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 "how many digits are in this number calculator"

Browse Popular Code Answers by Language