Gast
#1084333
Hallo, wenn ich Int Variablen (16 Bit) verwende und z.B. folgende Operation ausführe: int a = 30000; int b = 10; int c = 15; int result = 0; while (1) result = (a * b) / c; liefert mit result einen falschen Ergebnis! Warum? Wie macht man es richtig? Danke!