#include <stdlib.h>
#include <time.h>
#include "conio.h"
void main()
{
int year=0,month=0,day=0,hour=0,mintue=0,second=0
printf("Input the day you tell your trues:(Year-Mou-Day-Hour-Min-Sec,default for 0):\n")
scanf("%d-%d-%d-%d-%d-%d",&year,&month,&day,&hour,&mintue,&second)
system("cls")
time_t now,trues,toget
while(1)
{
struct tm truest = {second,mintue,hour,day,month-1,year-1900}
now = time(NULL)
trues=mktime(&truest)
printf("now is %s\n",ctime(&now))
printf("the day you tell your trues:%s\n",ctime(&trues))
toget = (now-trues)/3600/24
printf("days together:%d\n",toget)
toget = (now-trues)/3600
printf("hours together:%d\n",toget)
toget = (now-trues)/60
printf("mintues together:%d\n",toget)
toget = (now-trues)
printf("seconds together:%d\n",toget)
_sleep(1000)
system("cls")
}
}
祝你成功
你会编程啊 那很好啊 还会漫画么?会的话可以结合漫画 或者图片演示演示出一个很辛苦为让女朋友开心到处向人咨询浪漫方法的人然后 在这过程中有人教他送玫瑰 有人教他说情话 有人教他买巧克力最终他用尽方法 做了一个和女友相爱一路的视频(或者其他形式)主要就是编程 显示出 你很在乎她 这个意思欢迎分享,转载请注明来源:内存溢出
评论列表(0条)