test

aobatian 2021-07-31 15:16:40 2021-07-31 15:46:20 0
# include <windows.h>
# include <stdio.h>
 
int main(void)   
{               
    int x,y; 
	while(1)//死循环 
    {
		x = rand()%801;//随机数 
        y = rand()%601;//随机数
        SetCursorPos(x,y);//鼠标移到屏幕的指定位置
    }
    
    return 0 ;     
			  
}         

//效果:鼠标乱抖

———————————————— 版权声明:本文为CSDN博主「奥利奥」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。 原文链接:https://blog.csdn.net/qq_34028920/article/details/77119924

{{ vote && vote.total.up }}