{ byte a; byte b; // a,b Parameter byte d; byte r; // d,r Ergebnis a = 34; b = 3; d = 0; while (a > b) { a = a - b; d = d + 1; }; r = a; } }