Rewrite the if statement below using only the relational operator < in all conditions. Assume that the value of score is between 0 and 100 inclusive.
```
if (score >= 90)
printf("A\n");
else if (score >= 80)
printf("B\n");
else
printf("C\n");
```
```
if (score < 80)
printf("C\n");
else if (score < 90)
printf("B\n");
else
printf("A\n");
```
You might also like to view...
____ is represented by the relationship between the highlights and shadows.
A. Brightness B. Contrast C. Lightness D. Shadow
Borders are the lines that divide the columns and rows on a worksheet and define the structure of the worksheet.?
Answer the following statement true (T) or false (F)
A ________ is a graphical representation of data displayed as a matrix where individual statistical values are represented by colors
A) color palette B) heat map C) Performance Monitor D) System Diagnostics Report
A(n) ____________________ is a word, phrase, symbol, or picture that, when tapped or clicked, directs you to another document or website.
Fill in the blank(s) with the appropriate word(s).