Respuesta :

Answer:

Explanation:

To execute this program, and check grades accordingly, if..else statement will be used easily.

The pseudo code of this program is given below while flowchart of this program is attached with this solution

StartProgram to Check Grade;

if(grade in rage of 150-100)  

{

   A

}

 else if (grade is in range of 60-74)

 {  

   B

 }

 else if (grade is in range of 50-59)

 {

   C

 }

 else if (grade is in range of 40-49)

 {

  D

 }

else //GRADE IS IN RANGE 0-39

{

 E

}

Stop the program!;

Ver imagen asarwar