I am a little bored so i have written this short piece of code so that I can compare my machine speed to others.
My machine is an Emacine - Celeron 1.3Ghz.
My Cps = 74 Approx.
What does yours report and what machine do you have.
dim count(10) as float
randomize rnd(100): rem not that i have anything against fate.
sync on
tot = 0
t = timer() + 1000
cpscount = 0
cps = 0
repeat
cls
a = rnd(9)
tot# = tot# + 1
count(a) = count(a) + 1
print str$(a)
temp = (count(0) / tot#) * 100
print "0 - " + str$(count(0)) + " - " + str$(temp) + "%"
temp = (count(1) / tot#) * 100
print "1 - " + str$(count(1)) + " - " + str$(temp) + "%"
temp = (count(2) / tot#) * 100
print "2 - " + str$(count(2)) + " - " + str$(temp) + "%"
temp = (count(3) / tot#) * 100
print "3 - " + str$(count(3)) + " - " + str$(temp) + "%"
temp = (count(4) / tot#) * 100
print "4 - " + str$(count(4)) + " - " + str$(temp) + "%"
temp = (count(5) / tot#) * 100
print "5 - " + str$(count(5)) + " - " + str$(temp) + "%"
temp = (count(6) / tot#) * 100
print "6 - " + str$(count(6)) + " - " + str$(temp) + "%"
temp = (count(7) / tot#) * 100
print "7 - " + str$(count(7)) + " - " + str$(temp) + "%"
temp = (count(8) / tot#) * 100
print "8 - " + str$(count(8)) + " - " + str$(temp) + "%"
temp = (count(9) / tot#) * 100
print "9 - " + str$(count(9)) + " - " + str$(temp) + "%"
print "cps = " + str$(cps)
if t