up vote 14 down vote favorite
8
share [g+] share [fb]

I keep stumbling on the format specifiers for the printf() family of functions. What I want is to be able to print a double (or float) with a maximum given number of digits after the decimal point. If I use:

printf("%1.3f", 359.01335);
printf("%1.3f", 359.00999);

I get

359.013
359.010

Instead of the desired

359.013
359.01

Can anybody help me?

link|improve this question
Floating point inexactness really means you should do the rounding yourself. Take a variant of R and Juha's answer (which don't quite handle the trailing zeroes), and fix it up. – wnoise Feb 9 '11 at 0:56
feedback

6 Answers

up vote 16 down vote accepted

This can't be done with the normal printf format specifiers. The closet you could get would be:

printf("%.6g", 359.013); // 359.013
printf("%.6g", 359.01);  // 359.01

but the ".6" is the total numeric width so

printf("%.6g", 3.01357); // 3.01357

breaks it.

What you probably need to do is to sprintf("%.20g") the number to a string buffer then manipulate the string to only have N characters past the decimal point.

Assuming your number is in the variable num, the following function will remove all but the first N decimals, then strip off the trailing zeros (and decimal point if they were all zeros).

char str[50];
sprintf (str,"%.20g",num);  // Make the number.
morphNumericString (str, 3);
:    :
void morphNumericString (char *s, int n) {
    char *p;
    int count;

    p = strchr (s,'.');         // Find decimal point, if any.
    if (p != NULL) {
        count = 3;              // Adjust for more or less decimals.
        while (count >= 0) {    // Maximum decimals allowed.
             count--;
             if (*p != '\0')    // If there's less than desired.
                 break;
             p++;               // Next character.
        }

        *p-- = '\0';            // Truncate string.
        while (*p == '0')       // Remove trailing zeros.
            *p-- = '\0';

        if (*p == '.') {        // If all decimals were zeros, remove ".".
            *p = '\0';
        }
    }
}
link|improve this answer
Yes, I feared so. Thanks. – Gorpik Nov 10 '08 at 13:34
1  
Note, this answer assumes that the decimal place is . In some locales, the decimal place is actually a , comma. – Paul Feb 9 '11 at 0:32
There is actually a minor typo here - p = strchr (str,'.'); should actually be p = strchr (s,'.'); To use the function param rather than the global var. – n3wtz May 2 '11 at 14:15
feedback

To get rid of the trailing zeros, you should use the "%g" format:

float num = 1.33;
printf("%g", num); //output: 1.33

After the question was clarified a bit, that suppressing zeros is not the only thing that was asked, but limiting the output to three decimal places was required as well. I think that can't be done with sprintf format strings alone. As Pax Diablo pointed out, string manipulation would be required.

link|improve this answer
See the MSDN help page: msdn.microsoft.com/en-us/library/0ecbz014(VS.80).aspx – xtofl Nov 10 '08 at 12:49
@Tomalak: This does not do what I want. I want to be able to specify a maximum number of digits after the decimal point. This is: I want 1.3347 to be printed "1.335" and 1.3397 to be printed "1.34" @xtofl: I had already checked that, but I still can't see the answer to my problem – Gorpik Nov 10 '08 at 12:55
I have edited my question in order to improve the example, so what I need is clearer. – Gorpik Nov 10 '08 at 12:58
feedback

I like the answer of R. Slightly tweaked:

float f = 1234.5678; 
printf("%.0f.%0.f", f-0.5, 1000*(f-(int)f)));

'1000' determines the precision and '-0.5' rounds correctly.

Juha

'Power to the 0.5 rounding.'

link|improve this answer
feedback

What about something like this (might have rounding errors and negative-value issues that need debugging, left as an exercise for the reader):

printf(%.0d%.4g\n", (int)f/10, f-((int)f-(int)f%10));

It's slightly programmatic but at least it doesn't make you do any string manipulation.

link|improve this answer
feedback

Here is my first try at an answer:

void
xprintfloat(char *format, float f)
{
  char s[50];
  char *p;

  sprintf(s, format, f);
  for(p=s; *p; ++p)
    if('.' == *p) {
      while(*++p);
      while('0'==*--p) *p = '\0';
    }
  printf("%s", s);
}

Known bugs: Possible buffer overflow depending on format. If "." is present for other reason than %f wrong result might happen.

link|improve this answer
Your known bugs are the same that printf() itself has, so no problems there. But I was looking for a format string that allowed me doing what I wanted, not a programmatic solution, which is what I already have. – Gorpik Nov 11 '08 at 8:43
feedback

Slight variation on above: -

  1. Eliminates period for case (10000.0).
  2. Breaks after first period is processed.

Code here: -

void EliminateTrailingFloatZeros(char *iValue)
{
  char *p = 0;
  for(p=iValue; *p; ++p) {
    if('.' == *p) {
      while(*++p);
      while('0'==*--p) *p = '\0';
      if(*p == '.') *p = '\0';
      break;
    }
  }
}

It still has potential for overflow, so be careful ;P

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.