C++获取当前鼠标位置
#include <iostream>#include <windows.h>
using namespace std;
int main()
{
SetConsoleTitle("获取当前鼠标位置"); //设置标题
POINT p; //定义一个点
while (true)
{
if (GetCursorPos(&p)) //如果返回一个true,则…
{
cout << "当前鼠标位置:" << p.x << "," << p.y;
Sleep(100);
system("cls");
}
}
} 学习一下,兴许能用到! 学习学习
页:
[1]