0

当我在 Dev-C++ 4.9.9.2 中运行代码时出现这些错误,是的,我是初学者

In function int main()': Do' undeclared (first use this function) (每个未声明的标识符对于它出现的每个函数只报告一次。) ;' before '{' token 'While' undeclared (first use this function) ;' 在“开”之前

这是我的代码:

using namespace std;
int main() 
{
    int on;
    on = 1;
    Do
    {
            GetASyncKeyState(VK_LSHIFT int key);
            cout << key << endl;
    } 
            While on = 1;
    return 0;
}
4

1 回答 1

1

Do/While 应该是 do/while(即小写)。了解/阅读编译器生成的错误和警告消息是个好主意。

于 2013-03-08T02:57:16.290 回答