You are on page 1of 1

#include<conio.

h>
#include<stdio.h>
main()
{
float grade;
clrscr();
printf("\nEnter Grade:");
scanf("%f",&grade);
if((grade>=75) && (grade<=100)){
printf("\nPASSED!!!");}
else if((grade<75) && (grade>=50)){
printf("\nFAILED!!!");}
else
printf("\nOut Of Range!!!");
printf("\n\tThank You for using the software!!!");
printf("\n\t\tJayson Ramos Inc.");
getch();
}

You might also like