Completion requirements
Read this chapter, which reviews how computers make decisions using if statements. As you read this tutorial, you will understand that sometimes it is important to evaluate the value of an expression and perform a task if the value comes out to be true and another task if it is false. In particular, try the simulated program under the heading "Simulated Program" to see how a different response is presented to the user based on if a number is positive or negative.
Pay special attention to the "More Than One Statement per Branch" header to learn how the 'else' statement is used when there is more than one choice.
7. Simulated Program
Answer:
Enter an integer:
12
The number 12 is zero or positive
Good-bye for now
Only the true-branch was executed because the answer to the question num < 0
was true.
Simulated Program
Here is a simulation of this program (using JavaScript so it runs in your browser). Of course, for maximum benefit copy the program to a file and run it. But, play with the following if you want. Perform the steps 1, 2, and 3 under the simulated monitor as many times as you want. (Note: if this does not work, your browser does not have JavaScript enabled. Skip this and go on to the next page.)
This is just a simulation (using JavaScript), so it is not exactly like a compiling and running a real Java program. Don't take it too seriously. Please do the real thing if you can. Try this on-line compiler: http://ideone.com/ if you don't mind a few ads.
Question 7:
Try the program (or look at the flowchart) with the value 0 (zero). What is the output?