编程入门]结构体之时间设计 想了好久 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct time{ int year; int month; int day;};int…… 题解列表 2023年04月05日 0 点赞 0 评论 114 浏览 评分:0.0
刷題記錄,新手勿怪 摘要:解题思路:注意事项:参考代码:#include<stdio.h>//定義結構體DATEstruct DATE{ int year; int month; int day;};int main(void…… 题解列表 2023年04月07日 0 点赞 0 评论 124 浏览 评分:0.0
1049: [编程入门]结构体之时间设计 摘要:解题思路:题目主要要搞清楚什么是闰年,什么是平年,然后闰年每个月有多少天,平年每个月有多少天。注意事项:参考代码:#include <bits/stdc++.h> using namespace s…… 题解列表 2023年05月09日 0 点赞 0 评论 94 浏览 评分:0.0
结构体之时间设计(非结构体) 摘要:解题思路:初学者 结构体 不熟练 不知道哪里该用结构体 就想了一个不用结构体的注意事项:参考代码:#include<stdio.h>struct name { int year; int month;…… 题解列表 2023年05月19日 0 点赞 0 评论 124 浏览 评分:0.0
python天数计算——挑战最简解 摘要:python就不讲什么结构体了,咱没有这玩意参考代码:year, month, day = map(int, input().split()) days1 = [31, 28, 31, 30, 31…… 题解列表 2023年08月19日 0 点赞 0 评论 142 浏览 评分:0.0
结构体之时间设计规范解 摘要:解题思路:使用 isLeapYear函数来判断输入的年份是否为闰年,该函数返回1表示是闰年,返回0表示不是闰年。然后,使用 calculateDayOfYear函数来计算该日在本年中是第几天。在函数中…… 题解列表 2023年08月21日 0 点赞 0 评论 264 浏览 评分:0.0
结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int judge(int n) { if (n % 4 == 0 && …… 题解列表 2023年09月29日 0 点赞 0 评论 117 浏览 评分:0.0
结构体之时间设计C语言 摘要:```c #define _CRT_SECURE_NO_WARNINGS 1 #include int main() { int a[12] = { 31,28,31,30,31,30,…… 题解列表 2023年10月07日 0 点赞 0 评论 119 浏览 评分:0.0
结构体之时间设计(简单C语言) 摘要:解题思路:1月到12月没什么规律,所以用个数组来累加,累加玩后在month>=3月开始判断是闰年与否,是的话sum++注意事项:参考代码:#include<stdio.h>#include<stdli…… 题解列表 2023年10月14日 0 点赞 0 评论 120 浏览 评分:0.0
结构体之时间设计 摘要:解题思路:注意事项:参考代码:def leap(year): if (year % 4 == 0 and year % 100 != 0) or year % 400 == 0: …… 题解列表 2023年11月24日 0 点赞 0 评论 106 浏览 评分:0.0