@ -45,9 +45,10 @@ public class Taschenrechner {
}
int randomNummer(int a, int b) {
//Zufällige Nummer von a bis b
int temp = 0;
temp = (int) Math.random();
temp = (int) (Math.random() * (b + 1) ) + a;
return temp;