从功能返回到main()
后,我的主要功能是打印两次。
我很确定,如果我输入'\n'
并回到主菜单,它将无法运行。
int main(){
char faz;
printf("What do you want to do?\nWrite C to create\nWrite R to read\nWrite U to edit\nWrite D to delete\nWrite E to exit the program\n>");
while((faz = getchar()) != EOF || faz != '\n')
{
if(faz=='C') escreve();
if(faz=='R') ler();
if(faz=='U') editar();
if(faz=='D') apagar();
if(faz=='E') exit(1);
else{ main();}
}
任何帮助都将受到欢迎,这是一个简单的库管理程序。
最佳答案
您递归地调用了main,这就是导致问题的原因,并且您调用的exit(1)
通常表示正常行为有错误。我建议您执行以下操作:
int main(){
char faz;
bool done=false;
printf("What do you want to do?\nWrite C to create\nWrite R to read\nWrite U to edit\nWrite D to delete\nWrite E to exit the program\n>");
while(((faz = getchar()) != EOF || faz != '\n') && (!done))
{
done=true;
if(faz=='C') escreve();
if(faz=='R') ler();
if(faz=='U') editar();
if(faz=='D') apagar();
if(faz=='E');
else{
done=false;
printf("Please enter a valid input\n");
}
}
return 0;
}
关于c - 读取字符后如何清除\n新行?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42854224/