This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
#include<stdio.h>
struct Student
{
int id;
float gs;
float dw;
float yy;
float sum;
float aver;
}stu[3],temp;
int main()
{
printf(" 1.Input\n");
printf(" 2.Output\n");
printf(" 3.Order\n");
printf(" 4.Quit\n");
int i=0,j=0;
char x;
scanf("%c",&x);
switch(x){
case 'o':printf("You are trying to Output info");break;
case 'm':printf("You are trying to Make things ordered");break;
case 'q':printf("You are about to Quit");break;
case 'i':printf("Please input info of the three students:\n");