标签:back s函数 bit win pre 时间 poi c语言 获取
如题,利用C语言的GetCursorPos函数实现. 示例:
#include <bits/stdc++.h> #include <windows.h> #include <conio.h> int main(){ long x, y; POINT pt = {0, 0}; LPPOINT xy = &pt; while(true){ // 获取坐标 GetCursorPos(xy); // 打印坐标 printf("%d %d",pt.x,pt.y); Sleep(300); // 12个\b printf("\b\b\b\b\b\b\b\b\b\b\b\b"); // 12个空格 printf(" "); printf("\b\b\b\b\b\b\b\b\b\b\b\b"); //system("cls"); } }
这里使用了 退格-空格-退格 的方法代替system("cls") ,因为system每次调用时消耗的时间都较长.
bakcground:#f9b289
过于简单,欢迎CV
标签:back s函数 bit win pre 时间 poi c语言 获取
原文地址:https://www.cnblogs.com/drakeisdumb/p/12217603.html