Solving Error in C++ Digit Algorithm Program

  • C/C++
  • Thread starter chaoseverlasting
  • Start date
  • Tags
    Algorithm C++
In summary, the log() function calculates the natural logarithm. It always gives a weird result on my computer, but I don't know why. I am using a dev c++ compiler. Is this homework? No, this is not homework.f
  • #1
I wrote a program to find the number of digits of an integer, but I always get the wrong result. Could someone point out the error? Here's the source code:

#include <iostream>
#include <cmath>

using namespace std;

int main()
{
int i=53443;
cout<<log(i);
return 0;
}


The log function gives me a weird result each time. I don't know why though. I am using dev c++ compiler...
 
  • #2
The log function computes the natural logarithm.
 
  • #3
man log10
 
  • #4
Is this homework? I don't want to go much further with help if it is.
 
  • #5
This isn't homework. I am trying to write a program which needs this bit. I can't seem to figure this out. So is it log(e) or log (10) ?
 
  • #6
If that's it (the natural log- base 10 difference), I can figure the rest out. Is there perhaps some property of integers and the way this function works (the taylor series of log(1+x) maybe?) that's causing this?
 
  • #7
RTFM, or as Borek said, man log10 (and man log won't hurt). If you are not on a UNIX machine, there is always the internet. What does log() compute?

BTW, neither log() nor log10() is really what you want. Will this approach work on negative integers or on 64 bit (long long) integers?
 
  • #8
Personally I'd use sprintf & count the characters in the buffer...
 
  • #9
Since this is not homework, I will give my solution. Keep dividing by ten (the integer, not the double) until the result becomes zero. This works for all sizes of integers, negative integers, is much faster and more accurate than using log10(), and is much, much faster than sprintf.
Code:
int ndigits = 0;
for (same_int_type_as_i rem = i; rem != 0; rem /= 10) {
   ++ndigits;
}
 
  • #10
When I went to bed yesterday I thought of strlen(itoa(abs(i))) but I am not addicted to the web enough to post such things immediately :wink: This is similar to sprintf, just much easier to code.
 
  • #11
When I went to bed yesterday I thought of strlen(itoa(abs(i))) but I am not addicted to the web enough to post such things immediately :wink: This is similar to sprintf, just much easier to code.

Since this is not homework, I will give my solution. Keep dividing by ten (the integer, not the double) until the result becomes zero. This works for all sizes of integers, negative integers, is much faster and more accurate than using log10(), and is much, much faster than sprintf.
Code:
int ndigits = 0;
for (same_int_type_as_i rem = i; rem != 0; rem /= 10) {
   ++ndigits;
}

Thank you. :cool: That helps :cool:.
 

Suggested for: Solving Error in C++ Digit Algorithm Program

Back
Top