How to create a program that will input grades and determine if it is passed or failed? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

How to create a program that will input grades and determine if it is passed or failed?

And also assume that the passing grade is 75 and above, thank you in advance I will make your response as reviewer

1st Apr 2021, 7:21 AM
Joyce
Joyce - avatar
9 Answers
+ 2
Look into ToUpper() method.
1st Apr 2021, 8:31 AM
Avinesh
Avinesh - avatar
+ 1
Please share your attempt for any help.
1st Apr 2021, 7:50 AM
Avinesh
Avinesh - avatar
+ 1
Avinesh thank you so muchhhh❤️❤️❤️❤️
1st Apr 2021, 8:17 AM
Joyce
Joyce - avatar
+ 1
Joyce you're welcome
1st Apr 2021, 8:18 AM
Avinesh
Avinesh - avatar
0
char student_grade; Console.Write("Enter the student grade: "); student_grade = Convert.ToChar(Console.ReadLine()); switch (student_grade) { case 'A': Console.WriteLine("Excellent"); break; case 'B': Console.WriteLine("Very Good"); break; case 'C': Console.WriteLine("Good"); break; case 'D': Console.WriteLine("Keep it up"); break; case 'E': Console.WriteLine("Poor"); break; case 'F': Console.WriteLine("Very Poor"); break; default: Console.WriteLine("Invalid GRADE");
1st Apr 2021, 8:01 AM
Joyce
Joyce - avatar
0
Avinesh that's my first try but it didn't work and I don't know what's the error huhu
1st Apr 2021, 8:02 AM
Joyce
Joyce - avatar
0
Avinesh what if my program can accept small letter too?? What will I add?
1st Apr 2021, 8:26 AM
Joyce
Joyce - avatar
0
EliSucco that is not quite as efficient as only testing one case via ToLower() or ToUpper()
5th Apr 2021, 9:42 AM
️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️
️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️️ - avatar