这个报错信息是什么意思
char lu="/0";这里,char只能保存单个字符,而且,这是常量下面 scanf() 肯定报错了
可以写char lu[100];lu[0] = '\0';scanf("%s", &lu[0]);
这么改试试,供参考: