Hila Research Centre Computer Programming - 2 To produce a new screen select File, then New then respond No to the box that appears. Countdown to launch a rocket: Computers are used to control and monitor all sorts of things. They control robots, fly planes, watch heart beats and launch rockets. This program does a countdown and then announces that a rocket has been launched. CLS PRINT "Start Countdown" SLEEP 1 CLS PRINT "5" BEEP SLEEP 1 PRINT "4" BEEP SLEEP 1 PRINT "3" BEEP SLEEP 1 PRINT "2" BEEP SLEEP 1 PRINT "1" BEEP SLEEP 1 PRINT "BLASTOFF!!!!!!!!!!!!!!!!!!" HINT: As your programs get more complicated it is a good idea to separate, with spaces, related parts of your program. The spaces in this program make it easier to see how it works. Professional programmers structure their programs like this so that other people will be able to understand how it works.