I'm trying to do switch then if else in it. I don't know where I missed but this doesn't work.
Here's my code:
include<stdio.h>
include<conio.h>
int main()
{
  clrscr();
  int grade;
  printf("Input Grade");
  scanf("%d",&grade);
  switch(grade<101)
  {
    case 1:
      if (grade>=95)
        printf("A+");
      else
        printf("Invalid");
    break;
    case 2:
      if (grade>=85)
        printf("A");
      else
        printf("Invalid");
      break;
    default:
      printf("Invalid");
  }
getch();
}
So I don't know what's the matter. Only the first case work, when i enter a lower number than 95 'A' isn't the result. Please help me out.
 
     
     
    