Asked by Derek Smith

Create a program that outputs a letter grade for a student based on the following table: 

From To Grade 
90 100 A 
80 89 B 
70 79 C 
0 69 F 


I don't understand how to do this. Would you mind helping me get the answer to this Program?

Answers

Answered by Steve
for each grade g,
if(g>=90 and g<=100) print A
else if (g>=80 and g<90) print B
and so on

actual code depends on the language you are using
Answered by Derek Smith
Is that the answer?
Answered by Steve
no, it's help. Looks like you can't program or read.
Answered by Derek Smith
I don't know how to Program it. Can you help and guide me with the steps on how to program this?
Answered by Derek Smith
Can you guide me the steps and help me program this please
Answered by Derek Smith
Can u help me please
There are no AI answers yet. The ability to request AI answers is coming soon!

Related Questions