生日日数 (C语言代码) 摘要:#include <stdio.h>int main(){ int yy, mm, dd; int year[12] = {31, 28, 31, 30, 31, 30, 31, 31, …… 题解列表 2017年12月01日 0 点赞 0 评论 1421 浏览 评分:0.0
生日日数 (C语言代码) 摘要:#include <stdio.h>struct date{ int year,month,day;};int main(){ int i,n,leap; int s[2][13…… 题解列表 2018年02月01日 0 点赞 0 评论 867 浏览 评分:0.0
生日日数 (C++代码) 摘要:解题思路: 用了两种代码: 代码1:用的是以前高斯日记写的代码的思路。一个月一个月加上去,有点慢。 代码2:一年一年地加上去,直到日期不超过365,才判断是该年的哪一月哪一日。参考代…… 题解列表 2019年01月29日 1 点赞 0 评论 1081 浏览 评分:9.9
生日日数 (C语言代码) 摘要:#include <stdio.h> int main() { int yy, mm, dd; int year[12] = {31, 28, 31, 30, 31, 30, …… 题解列表 2017年10月27日 2 点赞 0 评论 1731 浏览 评分:9.9
生日日数 (Python代码) 摘要:解题思路:注意事项:参考代码:#! /usr/bin/python3 # Copyright(c) 2019 note.jorhelp.cn # Authored by Jorhelp o…… 题解列表 2019年04月19日 2 点赞 0 评论 1169 浏览 评分:9.9