思路清晰 switch+if 就OK了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ struct time { int year; int mon; in…… 题解列表 2022年12月27日 0 点赞 0 评论 80 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:#include struct DATE { int year; int month; int day; }date; int main() { scanf("%…… 题解列表 2020年10月17日 0 点赞 0 评论 226 浏览 评分:0.0
[编程入门]结构体之时间设计(C++实现)含解题思路 摘要:解题思路分为4步: 1. 定义装有年月日的结构体 2. 定义判断是否为闰年的函数 3. 定义每个月天数的查询表 4. 定义主函数计算天数 ```cpp #include #inclu…… 题解列表 2022年01月25日 0 点赞 0 评论 149 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:#include struct date { int year; int month; int days; }; int main() { struct date a; …… 题解列表 2020年01月27日 0 点赞 0 评论 269 浏览 评分:0.0
结构体之时间设计(C语言) 摘要:#include<stdio.h> typedef struct date { int year; int month; int day; }DATE; int main() {…… 题解列表 2023年01月11日 0 点赞 0 评论 61 浏览 评分:0.0
新手必看最简思路 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int xx(int n,int y){ int day=0,a=0; if(n%400==0||(n%4==0&&n%100!=0…… 题解列表 2024年12月12日 0 点赞 0 评论 218 浏览 评分:0.0
1049: [编程入门]结构体之时间设计 摘要:解题思路:先给出大致公式,然后再细分不同的情况进行处理注意事项:参考代码:y, m, d = map(int, input().split())num = 30*(m-1) + dfor i in r…… 题解列表 2022年02月22日 0 点赞 0 评论 138 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:#include<stdio.h>struct shuru{ int year; int month; int day;};int main(){ struct shuru chu; int s…… 题解列表 2017年08月22日 0 点赞 0 评论 814 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C++代码) 摘要:解题思路:思路都一样,不过记录重复天数有花活玩 1)就用数组 2)用switch语句减少空间存储。 注意事项:**12个月记天数是先记前11个月的天数在加上这个月的天数。** **判断闰年 4…… 题解列表 2021年02月04日 0 点赞 0 评论 157 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int Judge(int year){ if((year%4==0&&year%100!=0)||year%400==0) …… 题解列表 2018年05月21日 0 点赞 0 评论 435 浏览 评分:0.0