C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:使用一个数组存放每个月份的天数,注意判断本年是否为闰年。注意事项:参考代码:#include<stdio.h>int main(){ int Y,M,D,sum=0,i,flag=0;…… 题解列表 2017年08月26日 0 点赞 0 评论 878 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:解题思路:定义结构体,定义平年与闰年的两套数组,通过指针若闰年指针指向闰年数组否者指向平年数组,然后计算就可以了注意事项:参考代码:#include <stdio.h>typedef struct{ …… 题解列表 2021年01月14日 0 点赞 0 评论 270 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:```c #include int main(){ int year=0,a,b,add=0; int sum[]={31,28,31,30,31,30,31,31,30,31,30,31…… 题解列表 2020年04月07日 0 点赞 0 评论 245 浏览 评分:0.0
python天数计算——挑战最简解 摘要:python就不讲什么结构体了,咱没有这玩意参考代码:year, month, day = map(int, input().split()) days1 = [31, 28, 31, 30, 31…… 题解列表 2023年08月19日 0 点赞 0 评论 96 浏览 评分:0.0
结构体之时间设计 摘要:解题思路:可参考注释注意事项:参考代码:#include<stdio.h> struct Date{ int year; int month; int day; };…… 题解列表 2022年05月24日 0 点赞 0 评论 67 浏览 评分:0.0
【C语言】结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a,b,c; struct ymd{ int a; int b; in…… 题解列表 2022年07月21日 0 点赞 0 评论 127 浏览 评分:0.0
1049注意真积分 摘要:解题思路:注意事项:i要从零开始参考代码:#include <stdio.h>int main(){ int a[12]={31,28,31,30,31,30,31,31,30,31,30,31}; …… 题解列表 2021年11月09日 0 点赞 0 评论 160 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要: #include int main(){ typedef struct data{ int yy; int mm; int rr…… 题解列表 2019年11月17日 0 点赞 0 评论 235 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:#include<stdio.h> #define LEAP_YEAR(y) (y%4==0&&y%100!=0||y%400==0)?1:0 typedef struct CCalendar …… 题解列表 2018年12月14日 1 点赞 0 评论 325 浏览 评分:0.0
编写题解 1049: [编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<stdlib.h> struct c{ int y; int m; int d; …… 题解列表 2024年06月11日 0 点赞 0 评论 92 浏览 评分:0.0