C语言程序怎么设计日期?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言程序怎么设计日期?相关的知识,希望对你有一定的参考价值。
参考技术A数据结构 :
#include <time.h> stringude ring.h> #include<stdio.h> ,/*在<time.h>中定义的结构体类型 struct tm
设计时间模块列表 :
TodayTime_f(Time *); /*返回当前时间、日期*/ Print_f(Time); /*打印时间 */ Input_f(Time *) /* 输入时间*/ int IsLeapYear_f(int ); /*判断是否闰年*/ int FindDaysInMonth_f( int nYear, int nMon); /*
返回指定月份的天数*/ void AddDay_f(Time *strpTime, int nDay); /* 结构体变量加上天数*/ AddTime_f (Time *strpBas, Time *strpNum); /*时间相加*/ void TimeAdd_f(); /* 时间相加*/ void Initial(void); /*
初始化信息*/ TodayTime_f(Time *strpTime) time_t strCurrTime = time(0);/* 取当前时间*/ struct tm *strpCurr = localtime(&strCurrTime); strpTime->nDay = strpCurr->tm_mday; strpTime->nYear = (strpCurr->tm_year+1900); strpTime->nMon = strpCurr->tm_mon+1; strpTime->nSec=strpCurr->tm_sec; strpTime->nMin=strpCurr->tm_min; strpTime->nHour=strpCurr->tm_hour。
怎么用C++做日期相减(要求精确到分钟)
各路C++编程高手!
怎么用C++做日期相减(要求精确到分钟)
使用clock函数获得程序开始和结束的时间,相减就能得到程序运行的时间。
clock()是C/C++中的计时函数,而与其相关的数据类型是clock_t。在MSDN中,查得对clock函数定义如下:
clock_t clock(void) ;
简单而言,就是该程序从启动到函数调用占用CPU的时间。这个函数返回从“开启这个程序进程”到“程序中调用clock()函数”时之间的CPU时钟计时单元(clock tick)数,在MSDN中称之为挂钟时间(wal-clock);若挂钟时间不可取,则返回-1。其中clock_t是用来保存时间的数据类型。
例程:
#include<ctime>
using namespace std;
int main()
clock_t start,finish;
start=clock();
cout << "HW .... " << endl;
finish=clock();
cout << finish-start << "/" << CLOCKS_PER_SEC << " (s) "<< endl;
return 0;
#include<ctime>
using std::cin;
using std::cout;
using std::endl;
int main()
time_t t1;
time_t t2;
time(&t1);
system("pause");
time(&t2);
cout<<"The time it takes is"<<t2-t1<<endl;
//这样就可以计算值中间语句期间耗费的时间,单位是秒,你如果需要分钟除以60就是了,如果还不明白来问我吧,我经常在线 参考技术B 用 ctime(time.h) 里的函数 difftime
原型:
double difftime ( time_t time2, time_t time1 );
返回 时间差, 单位 秒。本回答被提问者采纳
以上是关于C语言程序怎么设计日期?的主要内容,如果未能解决你的问题,请参考以下文章
关于C语言的问题。设计一个程序,根据用户的选择,将1、日期转换为天数2、将天数转换为日期。