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.

22 lines
294 B

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