BY: Conrad Chevalier (hillking@uniserve.com) This is a speed program. It uses mph, kph, and m/s to find the unknown velocity--using one known speed, it converts to the two other unknown speeds. (e.g. if mph is known, it finds kph and m/s) Note: the same syntax notes apply for this program plus, the symbol => is the implication symbol (this program is a bit messy...) "WHAT IS KNOWN?" "MILES PER Hr...1" "KM PER Hr...2" "METERS PER SEC.3"?->A A=1=>Goto 1 A=2=>Goto 2 A=3=>Goto 3 Lbl 1 "MILES PER Hr"?->M " KM PER HOUR:" 1.61M# "METERS PER SEC.:" 161M/360 Goto 9 Lbl 2 "KM PER HOUR:"?->K "METERS PER SEC.:" K/3.6# " MILES PER Hr:" K/1.61 Goto 9 Lbl 3 "METERS PER SEC.:"?->X " KM PER Hr:" 3.6X# " MILES PER Hr:" 3.6X/1.61 Lbl 9