#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main (void) {
time_t t;
int n;
float f1 = 1;
float f2;
srand ((unsigned )time (&t));
f2 = (float) (rand () % (8192 * 4));
n = (rand () % 8) + 2;
while (n > 0) {
f1 = f1 / 2;
n--;
}
f2 = f2 + f1;
printf ("Rechne die Zahl in IEEE-754 um %f\n", f2);
return 0;
}