|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
if((handle = _findfirst(strcat(thePath,"/*"), &fa) ) == -1L)
66 2 C:\Users\luyanan\Desktop\c++\2\zuoye.c [Error] stray '\243' in program
66 2 C:\Users\luyanan\Desktop\c++\2\zuoye.c [Error] stray '\250' in program
66 2 C:\Users\luyanan\Desktop\c++\2\zuoye.c [Error] stray '\243' in program
66 2 C:\Users\luyanan\Desktop\c++\2\zuoye.c [Error] stray '\250' in program
66 8 C:\Users\luyanan\Desktop\c++\2\zuoye.c [Error] expected '(' before 'handle'
66 55 C:\Users\luyanan\Desktop\c++\2\zuoye.c [Error] expected statement before ')' token
66 57 C:\Users\luyanan\Desktop\c++\2\zuoye.c [Error] expected expression before '==' token
66 63 C:\Users\luyanan\Desktop\c++\2\zuoye.c [Error] expected statement before ')' token
这不会做了,求救!!
66 2 [Error] stray '\243' in program 这是告诉你:第 66 行 第 2 个字符为非英文字符,
66 8 [Error] expected '(' before 'handle' 这是给你明确 handle 前的左括号 (
后面的 55 个字符、57 个字符、63串个字符
我下面这一语句是纯英文字符,你复制替换你原来的,再运行试试
if((handle = _findfirst(strcat(thePath,"/*"), &fa)) == -1L)
|
|