package org.teachingkidsprogramming.section03ifs; public class HiLow { public static void main(String[] args) { // Choose a random number between 1 and 100 --#4.1 (fake!) & --#13 // Do the following 8 times --#9.1 // Ask the user for a guess --#1 // If the guess is correct --#4 // Play a bell --#2 // Tell the user that they won the game --#3 // and exit --#10 // Otherwise, if the guess is too high --#6 // Tell the end user that it is too high --#5 // Otherwise, if the guess is too low --#8 // Tell the end user that it is too low --#7 // End Repeat --#9.2 // After 8 incorrect guesses tell the user they've lost --#11 } }