ba237a9d91
Files correlati : Ricompilazione Demo : [ ] Commento : Aggiunti i sorgenti per Greenleaf Math Library (gfm.dll) git-svn-id: svn://10.65.10.50/trunk@10079 c028cbd2-c16b-5b4b-a496-9718f37d4682
11 lines
187 B
C
Executable File
11 lines
187 B
C
Executable File
#include <stdio.h>
|
|
#include "gm.h"
|
|
void main(void);
|
|
|
|
void main()
|
|
{
|
|
DECP x;
|
|
double f=98.76;
|
|
ConvDoubleToDecimalRound(x, f, 2);
|
|
dprintf("The double %7.2lf equals the DEC %t\n", f, x);
|
|
} |