A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 9 Ω


Basic256 Programme Einsplus


Quellcode


Basiswissen


Ein kurzes Programmier-Beispiel für einen kleinen Rechentrainer. Hier steht der Quellcode.

Quellcode


a = Int(10*Rand)
b = Int(10*Rand)
print "Was gibt ";
print a;
print " + ";
print b;
print " ?"
print
input z
if z=a+b then
print "richtig!"
else
print "leider nicht richtig"
end if