#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
main(){
int x,y;
do{
system("cls");
printf("__________________________\n");
printf("| E-EXIT |\n");
printf("| D-Display |\n");
printf("| I-insert |\n");
printf("|_________________________|\n");
printf("choose 1 or 2 or 3 \n");
y=scanf("%d",&x);
if(y !=1)
scanf("%c",x);//这里我有巨大的问题 就是这里有问题
}while(x !=1 && x !=2 && x !=3);
getch();
}
|
|