#include<iostream>
#include<Windows.h>
#include<string>
using namespace std;
int main(void){
//一天想我几次
//每一秒都想你
cout<<"舔狗一天计时器开始!"<<endl;
int count=0;
for(int s=0;s<24;s++){
for(int f=0;f<60;f++){
for(int m=0;m<60;m++){
count++;
cout<<"第"<<count<<"次想你!"<<endl;
Sleep(1000);//休眠一秒
}
}
}
system("pause");
return 0;
}