Und wieder hilft mir ein kleines Script in Übung zu bleiben.
for(let i =0; i<20; i++){
var op = parseInt((Math.random(i)*4).toString());
var x = parseInt((Math.random(i)*100).toString());
var y = parseInt((Math.random(i)*100).toString());
if(op===0) console.log(x + ' + '+y + ' = ' + (x+y));
if(op===1) console.log(x + ' - '+y + ' = ' + (x-y));
if(op===2) console.log(x + ' * '+y + ' = ' + (x*y));
if(op===3) console.log(x + ' / '+y + ' = ' + (x/y));
}
Aber man sollte natürlich nicht direkt das Ergebnis prüfen. Brüche kann der Gernerator auch nocht nicht. Den gibt es dann beim nächsten Mal.