结构体之时间设计——计算为一年的第几天 摘要:解题思路:将有31天和30天的月份分开来用列表存放,然后计算注意事项:闰年2月比平年多一天并不是为奇数的月份的天数就有31天参考代码:a,b,c = map(int,input().split())L…… 题解列表 2023年03月14日 0 点赞 0 评论 106 浏览 评分:0.0
暴力出奇迹 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ struct date { int year; int mouth; int day; }a; scanf…… 题解列表 2023年03月20日 0 点赞 0 评论 109 浏览 评分:0.0
结构体之时间设计 摘要: ```c #include int main() { int year,month,day,days=0; scanf("%d%d%d",&year,&month,&day…… 题解列表 2023年04月04日 0 点赞 0 评论 144 浏览 评分:0.0
编程入门]结构体之时间设计 想了好久 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct time{ int year; int month; int day;};int…… 题解列表 2023年04月05日 0 点赞 0 评论 135 浏览 评分:0.0
刷題記錄,新手勿怪 摘要:解题思路:注意事项:参考代码:#include<stdio.h>//定義結構體DATEstruct DATE{ int year; int month; int day;};int main(void…… 题解列表 2023年04月07日 0 点赞 0 评论 142 浏览 评分:0.0
1049: [编程入门]结构体之时间设计 摘要:解题思路:题目主要要搞清楚什么是闰年,什么是平年,然后闰年每个月有多少天,平年每个月有多少天。注意事项:参考代码:#include <bits/stdc++.h> using namespace s…… 题解列表 2023年05月09日 0 点赞 0 评论 112 浏览 评分:0.0
结构体之时间设计(非结构体) 摘要:解题思路:初学者 结构体 不熟练 不知道哪里该用结构体 就想了一个不用结构体的注意事项:参考代码:#include<stdio.h>struct name { int year; int month;…… 题解列表 2023年05月19日 0 点赞 0 评论 139 浏览 评分:0.0
python天数计算——挑战最简解 摘要:python就不讲什么结构体了,咱没有这玩意参考代码:year, month, day = map(int, input().split()) days1 = [31, 28, 31, 30, 31…… 题解列表 2023年08月19日 0 点赞 0 评论 155 浏览 评分:0.0
结构体之时间设计规范解 摘要:解题思路:使用 isLeapYear函数来判断输入的年份是否为闰年,该函数返回1表示是闰年,返回0表示不是闰年。然后,使用 calculateDayOfYear函数来计算该日在本年中是第几天。在函数中…… 题解列表 2023年08月21日 0 点赞 0 评论 296 浏览 评分:0.0
结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int judge(int n) { if (n % 4 == 0 && …… 题解列表 2023年09月29日 0 点赞 0 评论 135 浏览 评分:0.0