Percent 1.3 About the author: My name is Luke Miller, I am 17 and a senior in high school. I am also a Radio Operator/ Maintainer (31C) in the U.S Army. My email address is lucas.miller@lycos.com About the program: I wrote this program to help figure out percents on tests and death tolls on starcraft. Synopsis: This program takes an amount out of a total times 100 to calculate a percentage. It can also round the percentage to reduce the number of decimal places shown as specified by the user up to 9 places. How to use the program: First, execute the program. Second it will prompt the user for an amount. Next it will prompt the user for a total. Then it will prompt the user for rounding the answer to a number of decimal places. Then it will display the answer and then pause. Press enter to continue. After that it will prompt the user to either exit or run again. Special Notation: \->\ is the Store key. Amount of memory: 152 Bytes Program Code: Prgm:PERCENT :Lbl 1 :ClrHome :Disp "AMOUNT?" :Input A :Disp "TOTAL?" :Input T :Disp "HOW MANY DECIMAL PLACES?" :Input D :ClrHome :(A/T)100\->\P :Round(P,D)->P :Disp P :Pause :ClrHome :Disp "RERUN?" :Disp "YES=1" :Disp "ANYOTHER=EXIT" :Input O :If O=1 :Goto 1 :ClrHome :End