1.Draw a flowchart representing the structure expressed by the following if and else conditional statements.
if (a > b) {
if (c > a) {
if (d > c) { print(d) }
}
} else if (b > a) {
if (c > b) {
} }
2.Summarize the following rat’s-nest routine with a single if-else statement:
if X > 5 then goto 80
X = X + 1
goto 90
80 X = X + 2
90 stop
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here