Unit 1 Exercise: Logic Drills
Write out the logic to the following problems. Example: Represent the logic of a program that allows the user to enter a value. The program divides the value by 2 and outputs the result. Solution: start input myNumber set myAnswer = myNumber / 2 output myAnswer stop Represent the logic of a...