资源简介
多功能鼠标连点器
代码片段和文件信息
#include
#include
using namespace std;
void get_mouse(int &xint &y)
{
POINT pt;
GetCursorPos(&pt);
x=pt.x;
y=pt.y;
return ;
}
int main()
{
while(1)
{
int xy;
get_mouse(xy);
cout< system(“cls“);
}
return 0;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 113 2020-08-29 16:53 readme.txt
文件 302 2020-08-29 16:38 获得鼠标位置.cpp
文件 1921929 2020-08-29 16:38 获得鼠标位置.exe
文件 920 2020-08-29 16:40 鼠标连点器.cpp
文件 1923326 2020-08-29 16:40 鼠标连点器.exe
- 上一篇:c++ 简易贪吃蛇源码
- 下一篇:数据结构教程李春葆第五版书中例题源代码
评论
共有 条评论