Complete (in C++) the pseudocode below by including a SWITCH statement that takes the user input (an integer between 1-5) and prints out a countdown in its English equivalent. CREATE inputNum PRINT ("Please enter a number between 1-5 to start counting from:") READ inputNum WHILE inputNum >= 1 AND inputNum <= 5 BEGIN WHILE END WHILE
Complete (in C++) the pseudocode below by including a SWITCH statement that takes the user input (an integer between 1-5) and prints out a countdown in its English equivalent.
CREATE inputNum
PRINT ("Please enter a number between 1-5 to start counting from:")
READ inputNum
WHILE inputNum >= 1 AND inputNum <= 5
BEGIN WHILE
END WHILE
CREATE inputNum
PRINT ("Please enter a number between 1-5 to start counting from:")
READ inputNum
WHILE inputNum >= 1 AND inputNum <= 5
BEGIN WHILE
SWITCH (inputNum)
case 5:
PRINTLINE("five")
break;
case 4:
PRINTLINE("four")
break;
case 3:
PRINTLINE("three")
break;
case 2:
PRINTLINE("two")
break;
case 1:
PRINTLINE("one")
break;
END SWITCH
inputNum-=1;
END WHILE
Step by step
Solved in 3 steps with 3 images