Computer Science, asked by joshiyerra45, 1 year ago

Which statement is a multi way statement and why

Answers

Answered by Anonymous
2
Héllø Buddy...

Answer : Multi-way decisions and the switch statement

Dr. Tim McGuire
CS 164
Sam Houston State University

What You�ll Learn

Nested if statementsUsing the switch statementUsing the break statement in a switch

Multi-way decisions with Nested if s

You can nest if-else statements to perform multiple-choice actionsExampleif ( grade >= 90) 
{lgrade = 'A';} 
else 
{if (grade >= 80) 
{lgrade = 'B';} 
else 
{if (grade >= 70) 
{lgrade = 'C';}}}


#Mark Me As Brilliant...
Answered by Anonymous
1

Answer:

इरादा पैदा करो, इरादा. इरादे से आसमान का चांद भी

इंसान के कदमों में सजदा करता है.

Similar questions