level 8
Sail丶Man
楼主
# include <windows.h>
# include <conio.h>
# include <stdio.h>
int j = 0;
void Quit(void);
void start(void);
int main(void){
int i = 0;while (true)
{printf("按一下B点击鼠标左键1000次");
start();
while (i < 1000)
{mouse_event (MOUSEEVENTF_LEFTDOWN |MOUSEEVENTF_LEFTUP, 0, 0, 0, 0 );
i++;}i = 0;
printf("已点完1000次,继续");}
return 0;}
void start(void)
{printf("\n按B开始,已完成%d次\n\n",j++);
while (true){if (getch() == 'b'||getch() == 'B')break;
}return ;}I
2013年09月18日 13点09分
1
# include <conio.h>
# include <stdio.h>
int j = 0;
void Quit(void);
void start(void);
int main(void){
int i = 0;while (true)
{printf("按一下B点击鼠标左键1000次");
start();
while (i < 1000)
{mouse_event (MOUSEEVENTF_LEFTDOWN |MOUSEEVENTF_LEFTUP, 0, 0, 0, 0 );
i++;}i = 0;
printf("已点完1000次,继续");}
return 0;}
void start(void)
{printf("\n按B开始,已完成%d次\n\n",j++);
while (true){if (getch() == 'b'||getch() == 'B')break;
}return ;}I