write a complete program using if statement for the following statement. string =(m> = 90) ?"A" : (m> = 80)? "B": "C";.
Answers
Answered by
0
Answer:
if condition evaluates to true, statements are executed 2. if condition evaluates to false, statements are skipped
Explanation:
if condition evaluates to true, statements are executed 2. if condition evaluates to false, statements are skipped
Similar questions