Tagged Questions
14
votes
12answers
5k views
Efficient way to determine number of digits in an integer
What is a very efficient way of determining how many digits there are in an integer in C++?
6
votes
6answers
383 views
Counting digits using while loop
I was recently making a program which needed to check the number of digits in a number inputted by the user. As a result I made the following code:
int x;
cout << "Enter a number: ";
cin ...
6
votes
2answers
178 views
Difference in digits10 between GCC and MSVC
I have the following code:
#include <iostream>
#include <limits>
int main()
{
std::cout << std::numeric_limits<unsigned long long>::digits10 << std::endl;
return ...
4
votes
7answers
931 views
Array Division - What is the best way to divide two numbers stored in an array?
I have two arrays (dividend, divisor):
dividend[] = {1,2,0,9,8,7,5,6,6};
divisor[] = {9,8};
I need the result (dividend/divisor) as:
quotient[] = {1,2,3,4,5,6,7};
I did this using array ...
3
votes
5answers
520 views
How can I safely and quickly extract digits from an int?
We currently have some code to extract digits from an int, but I need to convert this to a platform without snprintf, and I am afraid of a buffer overrun. I have started to write my own portable (and ...
3
votes
4answers
2k views
Identify the digits in a given number.
i'm new to programming.. and i'm stuck at a problem.. I want my program to identify the separate digits in a given number, like if i input 4692, it should identify the digits and print 4 6 9 2. And ...
2
votes
3answers
114 views
How to separate digits from a number in C++?
I'm trying to find a way to get 5 digits separately from a whole number.
cin >> option; // Option to enter a number(don't worry about this)
if (option == 1) // The option(don't worry)
{
...
2
votes
3answers
1k views
Extracting individual digits from a float
I have been banging my head on this one all day. The C++ project I am currently working on has a requirement to display an editable value. The currently selected digit displays the incremented value ...
1
vote
8answers
2k views
c ++ digits after decimal point
I have a float number for example 12.12123
Is there a function which would display only number with 2 digits after decimal point
12.12 ?
Here is the code:
y1 = ( c1 - (a1 * x)) / b1;
y2 = ( c2 - a2 ...
0
votes
5answers
188 views
seperate digits of a long numer in c++
i have for example the long number 12345678901 and i want to get separately each digit to use it.i tried really hard but i didnt make it so far?any ideas??
thanks for your answers they are very ...
0
votes
4answers
947 views
C++ count the number of digits of a double
i want to do what the title says like this:
int number1;
cin>>number1;
num1len=log10(number1)+1;
cout<<"num of digits is "<<num1len<<"\n";
but when the number of digits is ...
-2
votes
2answers
112 views
repeating back digits?
I'm trying to use C++ to grab 5 digits from the user and repeat it back to the user.
Unfortunately, the closest I have come to that is by repeating it back backwards...
any help here?