Posted by steve on Friday, October 23, 2009 at 7:38pm.
"What will be printed if the input is 0?"
As a programmer, you would following each statement of the if-then-else statement and see where the conditions will be satisfied. Follow what it does (prints) after that.
If you start from the top, you won't have very far to go before you find the answer if someone gets a zero (i.e. X=0).
I am still unaware of the answer.
100.
"
100 input X
200 if (0<=X and X<49)
300 Output "you fail"
400 Else if (50<=X and X <70)
500 Output "your grade is" X
600 Output " you did OK"
700 ....
"
What will be printed if the input is 0?
You have input the value of X in line 100. It will then execute line 200.
After line 200 has been executed, if the input value of X = 0, which is the next line the program will execute?
Make a guess from the context if you have to.
The if-then-else statement branches according to the condition tested.
In the case of line 200, it tests the value of x=0, if the condition is true, it will execute the next statement (and then jump to after the endif statement), otherwise it goes to the next else or elseif statement, and so on.
If you need more details, explain where the problem is, or explain how you think it works, so we can better help you.
Related Questions
Part 1 - Consider the following selection statement where X is an integer test ...
Algorithm - Algorithm Verification Consider the following selection statement ...
programming - Can You Please help me understand how to do this and what i have ...
Help Help - Consider the following selection statement where X is an integer ...
programming - I am in IT/210 and am having problems with the entire class. But ...
Part 1 - input X if (0 <= X and X < 49) output "you fail"...
C++ Programming - What is the output of the following C++ code? p = list; while...
statistics - Starting with a population that is normally distributed with a mean...
programming logic and design - what is the output by each psuedocode segments ? ...
programming logic and design - whats is the output for each psuedocode sedment? ...
For Further Reading