博客
关于我
日期+天数,求日期
阅读量:583 次
发布时间:2019-03-10

本文共 760 字,大约阅读时间需要 2 分钟。

星系炸弹

在X星系的广袤空间中漂浮着许多X星人造“炸弹”,用来作为宇宙中的路标。

每个炸弹都可以设定多少天之后爆炸。
比如:阿尔法炸弹2015年1月1日放置,定时为15天,则它在2015年1月16日爆炸。
有一个贝塔炸弹,2014年11月9日放置,定时为1000天,请你计算它爆炸的准确日期。

请填写该日期,格式为 yyyy-mm-dd 即4位年份2位月份2位日期。比如:2015-02-19

请严格按照格式书写。不能出现其它文字或符号

答案:

2017-08-05
转载:

工具实现

在这里插入图片描述
在这里插入图片描述

在这里插入图片描述

代码实现:

转载:

#include
#define Days 1000int main(){ int monthday[12]={ 31,28,31,30,31,30,31,31,30,31,30,31}; int year=2014,month=11,day=9,i; //判断该年是闰年还是平年 if(year%400==0 || (year%4==0 && year%100!=0)) monthday[1]=29; else monthday[1]=28; for(i=0;i
monthday[month-1]) { day=1; month++; if(month>12) { month=1; year++; if(year%400==0 || (year%4==0 && year%100!=0)) monthday[1]=29; else monthday[1]=28; } } } printf("%d-%02d-%02d",year,month,day); return 0;}
你可能感兴趣的文章
Mysql Can't connect to MySQL server
查看>>
mysql case when 乱码_Mysql CASE WHEN 用法
查看>>
Multicast1
查看>>
mysql client library_MySQL数据库之zabbix3.x安装出现“configure: error: Not found mysqlclient library”的解决办法...
查看>>
MySQL Cluster 7.0.36 发布
查看>>
Multimodal Unsupervised Image-to-Image Translation多通道无监督图像翻译
查看>>
MySQL Cluster与MGR集群实战
查看>>
multipart/form-data与application/octet-stream的区别、application/x-www-form-urlencoded
查看>>
mysql cmake 报错,MySQL云服务器应用及cmake报错解决办法
查看>>
Multiple websites on single instance of IIS
查看>>
mysql CONCAT()函数拼接有NULL
查看>>
multiprocessing.Manager 嵌套共享对象不适用于队列
查看>>
multiprocessing.pool.map 和带有两个参数的函数
查看>>
MYSQL CONCAT函数
查看>>
multiprocessing.Pool:map_async 和 imap 有什么区别?
查看>>
MySQL Connector/Net 句柄泄露
查看>>
multiprocessor(中)
查看>>
mysql CPU使用率过高的一次处理经历
查看>>
Multisim中555定时器使用技巧
查看>>
MySQL CRUD 数据表基础操作实战
查看>>