C语言中,怎样获得当前年份和月份?
答案:4 悬赏:0 手机版
解决时间 2021-11-26 18:20
- 提问者网友:寂寞撕碎了回忆
- 2021-11-26 05:29
C语言中,怎样获得当前年份和月份?
最佳答案
- 五星知识达人网友:西岸风
- 2021-11-26 05:50
若用标准c语言库
#include
#include
int main()
{
time_t now;
time(&now);
printf("\nNow is:%s\n",ctime(&now));
return 0;
}
若用TC编程器
#include
#include
main()
{
struct date d;
struct time t;
getdate(&d);
gettime(&t);
printf("the current day is:%d-%d-%d\n",d.da_year,d.da_mon,d.da_day);
printf("the current time is:%d:%d:%d",t.ti_hour,t.ti_min,t.ti_sec);
getch();
}追问我希望把年份直接赋值个I,月份直接赋值给K追答那 直接 用 getdate(&d)后 加 l=d.da_year;k=d.da_mon 就好啦 不过这只能在TC下运行
#include
#include
int main()
{
time_t now;
time(&now);
printf("\nNow is:%s\n",ctime(&now));
return 0;
}
若用TC编程器
#include
#include
main()
{
struct date d;
struct time t;
getdate(&d);
gettime(&t);
printf("the current day is:%d-%d-%d\n",d.da_year,d.da_mon,d.da_day);
printf("the current time is:%d:%d:%d",t.ti_hour,t.ti_min,t.ti_sec);
getch();
}追问我希望把年份直接赋值个I,月份直接赋值给K追答那 直接 用 getdate(&d)后 加 l=d.da_year;k=d.da_mon 就好啦 不过这只能在TC下运行
全部回答
- 1楼网友:轮獄道
- 2021-11-26 08:58
你指的是从系统,还是输入?
i和k的类型是什么?追问I和K 的类型都是整型,肯定是从系统啦,直接输入有啥意思追答#include
char datebuf[128];
char timebuf[128];
_strdate( datebuf ); //日期 格式是:02/28/13
_strtime( timebuf ); //时间 格式是:17:42:46追问我希望的是把年份直接赋值个I,月份直接赋值给K,而不是输出整个日期追答根据字符还不好取值计算啊?
i和k的类型是什么?追问I和K 的类型都是整型,肯定是从系统啦,直接输入有啥意思追答#include
char datebuf[128];
char timebuf[128];
_strdate( datebuf ); //日期 格式是:02/28/13
_strtime( timebuf ); //时间 格式是:17:42:46追问我希望的是把年份直接赋值个I,月份直接赋值给K,而不是输出整个日期追答根据字符还不好取值计算啊?
- 2楼网友:醉吻情书
- 2021-11-26 07:28
补充:
vc的话 CTime now=CTime::GetCurrentTime();
int year=now.GetYear();
int month=now.GetMonth();
i=year;k=month;追问#include#include
main(){
int i,k;
CTime now=CTime::GetCurrentTime();
int year=now.GetYear();
int month=now.GetMonth();
i=year;k=month;
printf("%d年%d月",i,k);
}
根据你的意思,我写了这么一个代码。可是运行的时候有错误提示
可以解释清楚些吗?写个完整的代码给我吧
vc的话 CTime now=CTime::GetCurrentTime();
int year=now.GetYear();
int month=now.GetMonth();
i=year;k=month;追问#include
main(){
int i,k;
CTime now=CTime::GetCurrentTime();
int year=now.GetYear();
int month=now.GetMonth();
i=year;k=month;
printf("%d年%d月",i,k);
}
根据你的意思,我写了这么一个代码。可是运行的时候有错误提示
可以解释清楚些吗?写个完整的代码给我吧
- 3楼网友:北城痞子
- 2021-11-26 06:18
String date=this.DateTime.now.tostring('yyyy-MM-dd');
String i=substring(date,0,4);
String k=substring(date,5,7);追问String ?有错误提示
'String' : undeclared identifier
String i=substring(date,0,4);
String k=substring(date,5,7);追问String ?有错误提示
'String' : undeclared identifier
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯