REM Brian REM REM Random Addition Question Asker REM REM Credit http://intensecogitation.info N1 = INT(RND * 10) + 1 N2 = INT(RND * 10) + 1 CLS PRINT “Random Addition Question Asker” PRINT PRINT “What is”; N1; “+”; N2; “?” INPUT PA PRINT IF PA = N1 + N2 THEN PRINT “Correct” ELSE PRINT “Wrong” [...Read more...]


