Computer Science, asked by manjujaiswal2020, 6 hours ago

write a complete program using if statement for the following statement. string =(m> = 90) ?"A" : (m> = 80)? "B": "C";.​

Answers

Answered by amrithaadithya2010
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