1049:[编程入门]结构体之时间设计 摘要:```c #include typedef struct YMD{ int YEAR; int MON; int DAY; }YMD; int judge_leap(YMD da…… 题解列表 2022年05月09日 0 点赞 0 评论 142 浏览 评分:0.0
新手结构体 希望能帮到你! 摘要:```c #include int main() { struct time { int y; int m; int d; }time; scanf("%d …… 题解列表 2022年05月05日 0 点赞 0 评论 158 浏览 评分:0.0
[编程入门]时间设计 摘要:解题思路:数组定义来累加注意事项:判断闰年参考代码:#include<bits/stdc++.h>using namespace std;int a,b,c,s,z[15]={0,31,28,31,3…… 题解列表 2022年05月05日 0 点赞 0 评论 102 浏览 评分:0.0
编写题解 1049: [编程入门]结构体之时间设计 摘要:解题思路:不使用数组,变量是随便定义的注意事项:8月是31天,十一月是30参考代码:#include<iostream>using namespace std;struct day { int yea…… 题解列表 2022年04月24日 0 点赞 0 评论 143 浏览 评分:9.9
结构体之时间设计 摘要:解题思路:将12个月每个月的天数保存在一个一维数组中。再判断输入的年份是否为闰年,如果是,就更换一维数组中2月份的总天数。之后将前几个月的总天数累加,再加上这个月的天数,得到的就是今年时一年中的第几天…… 题解列表 2022年04月23日 0 点赞 0 评论 147 浏览 评分:9.9
【鼠鼠】用结构体的方法,适合小白 摘要:``````cpp #include //#include #include #include #include #include using namespace std; str…… 题解列表 2022年04月23日 0 点赞 0 评论 135 浏览 评分:0.0
思路挺清晰的,值得一看 摘要:解题思路:注意事项:参考代码://结构体之时间设计//定义一个结构体变量(包括年、月、日)。//计算该日在本年中是第几天,注意闰年问题。#include <stdio.h>struct date { …… 题解列表 2022年04月12日 0 点赞 0 评论 197 浏览 评分:0.0
编写题解 1049: [编程入门]结构体之时间设计 摘要:解题思路:先判断平闰年,并用数组列出该年每月天数,遍历前几个月的天数求和后加上输入的几号即为结果。注意事项:参考代码:#include<stdio.h>struct dijitian{ int …… 题解列表 2022年04月06日 0 点赞 0 评论 182 浏览 评分:0.0
1049: [编程入门]结构体之时间设计 摘要:解题思路:(1)定义一个平年月份天数的数组。(2)根据for循环统一计算平年月份的天数。(3)判断输入数据年份是否是闰年,考虑输入月份是否大于2,若满足则sum加上一天。(4)加上输入数据中的day。…… 题解列表 2022年03月24日 0 点赞 0 评论 208 浏览 评分:9.9
[编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().strip().split())s=0list1=['1','3','5',&…… 题解列表 2022年03月20日 0 点赞 1 评论 348 浏览 评分:9.9