0 Members and 1 Guest are viewing this topic.
0->CWhile C+1->C-10000EndDisp "Finished"
My NXT takes about 1.5 seconds to count from 60000 to 0.EDIT: Actually, it takes about 2.2 seconds.
Are you sure it can count to 10,000 in about 1/30th of a second?That seems super fast.......
#include <stdio.h>int main(){ a=60000; while(a){ a=a-1; } printf("Done\n"); return 0;}