Hallo,

Code:
zahl = 7372800 / 64 / 1000000;
Hier wird nur mit int Zahlen gerechnet.

Nimm
Code:
zahl = (float)7372800 / 64 / 1000000;
Gruß

Jens