Logo

Programming-Idioms

  • Pascal
  • Fortran

Idiom #23 Convert real number to string with 2 decimal places

Given a real number x, create its string representation s with 2 decimal digits following the dot.

  write (unit=s,fmt="(F20.2)") x
uses SysUtils;
s := format('%.2f',[ x]);
#include <stdio.h>
sprintf(s, "%.2f", x);

New implementation...
< >
programming-idioms.org