Hallo Matthias Apsel,
for (x = 0; x <= 100; x++) { for (y = x; y <=100; y++) { if (x < .5 && y >.5 && y-x < .5) { Dreieck } } }
Und: Vielleicht gibt es tatsächlich unterschiedliche Ergebnisse, je nach dem, ob man völlig beliebig wählt oder in Abhängigkeit von x.
Was ja relativ leicht zu prüfen wäre.
for (x = 0; x <= 100; x++) {
for (y = 0; y <=100; y++) {
if (x < y) {
if (x < .5 && y >.5 && y-x < .5) { Dreieck }
}
else {
if (y < .5 && x >.5 && x-y < .5) { Dreieck }
}
}
}
Bis demnächst
Matthias
--
Rosen sind rot.
Rosen sind rot.