Click here to Skip to main content
15,887,485 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Write a letter grade program to display the letter grade of an in class quiz which is graded out of 25 points and converted to percentage scale.

How do I convert to percentage scale? Do I need to create more variables?

What I have tried:

C#
namespace _25_point_grade_scale
{
    class Program
    {
        static void Main(string[] args)
        {
            double testScore;

            Console.WriteLine("Please enter your score out of 25");
            Console.ReadLine());
            
            if (testScore >= 24)
            {
                Console.WriteLine("A");
            }
            else if (testScore >= 20.75)

            {
                Console.WriteLine("B");
            }
            else if (testScore >= 18.25)

            {
                Console.WriteLine("C");
            }
            else if (testScore >= 15)

            {
                Console.WriteLine("D");
            }
            else
            {
                Console.WriteLine("F");
            } 
        }
    }
}
Posted
Updated 10-Feb-18 16:28pm
v2
Comments
Patrice T 10-Feb-18 17:23pm    
How do you get the percentage by hand?
Member 13671880 10-Feb-18 19:38pm    
i found the numbers like 24 out of 25 for an A in a online chart
Patrice T 10-Feb-18 19:44pm    
And it is a percentage?

Find the maths to convert the grade to percentage.

1 solution

Hey there,

The percentage equivalent of a score is found by dividing that score by the maximum possible score and then multiplying by 100. Introduction to Percentages[^]

For example, "23 out of 25" => 23 / 25 * 100% = 92%

To do this in C# you will indeed have to create more variables - though it's very straightforward provided you understand the math above :)

Best of luck!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900