1. es gibt einen [Edit]-Button
2. Es heißt Ganzzahldivision. Also nein.
Real = Fließkommazahl
Integer = Ganzzahl
Im Notfall mußt'e dir halt selber was basteln:
für Rest := r mod x;
Delphi-Quellcode:
// für positive Zahlen:
rest := r - (Trunc(r / x) * x);
rest := r - (Int(r / x) * x);
rest := Frac(r / x) * x;
...