You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
235 B

#include "mysyslib.h"
int main(){
char ipt;
while(1){
ipt = mainMenu();
if(ipt=='i'){
}else if(ipt=='o'){
}else if(ipt=='m'){
}else if(ipt=='q'){
break;
}else{
continue;
}
}
return 0;
}