Question: Write an if-else statement to output Greater than or equal to 90 if the value of userNum is greater than or equal to 90. Otherwise,
Write an if-else statement to output "Greater than or equal to 90" if the value of userNum is greater than or equal to 90. Otherwise, output "Less than 90". End with a newline.
#include
int main() { int userNum; cin >> userNum; /* Your code goes here */
return 0; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
