Systemnahe Programmierung in C: Genauigkeit von Fließkomma-Arithmetik |
1#include <stdio.h>
2
3int
4main (void)
5{
6 double val = 1.0, eps = 1.0;
7
8 while (val != val + eps)
9 eps /= 2.0;
10
11 printf ("%f == %f + %e\n", val, val, eps);
12
13 return 0;
14}
|
Letzte Änderung: 28.01.2009 | © Prof. Dr. Uwe Schmidt |