//设定一个定时器,当输入一个时间就按照输入值停留多少
#include<windows.h>
void time_stop(int n)
{
double cnt = 0;
cnt = n * 1000;//毫秒
Sleep(cnt);
}
//设定一个定时器,当输入一个时间就按照输入值停留多少
#include<windows.h>
void time_stop(int n)
{
double cnt = 0;
cnt = n * 1000;//毫秒
Sleep(cnt);
}