C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:有些时候,解决日期类要先看看是否要预处理。参考代码:#include <stdio.h>#include <stdlib.h>#define IS_LEAPYEAR(x) (x%4==0&&x%100…… 题解列表 2017年07月22日 1 点赞 0 评论 668 浏览 评分:0.0
结构体与时间设计C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct Date{ int year; int mouth; int day;}data;int main(){ int i=0;…… 题解列表 2022年12月06日 0 点赞 0 评论 75 浏览 评分:0.0
通过c语言的指针来访问和运算 摘要:#include<stdio.h> #include<string.h> typedef struct{ int year; int month; int day; }DAY,*SD…… 题解列表 2022年01月13日 0 点赞 0 评论 96 浏览 评分:0.0
1049: [编程入门]结构体之时间设计-题解(python) 摘要:解题思路:注意事项:参考代码:y,m,d = map(int,input().split())m1,m3,m5,m7,m8,m10,m12 = 31,31,31,31,31,31,31m4,m6,m9…… 题解列表 2021年10月16日 0 点赞 0 评论 146 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> typedef struct { int year; int month; int day; }…… 题解列表 2020年11月24日 0 点赞 0 评论 155 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:参考代码:#include<stdio.h>struct Date{ int year; int month; int day; int leap; int count;…… 题解列表 2018年05月29日 0 点赞 0 评论 367 浏览 评分:0.0
1049时间设计(结构体实现) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>typedef struct shijian{ int nian; int yue; int ru;}shijian;int main(…… 题解列表 2024年05月23日 0 点赞 0 评论 63 浏览 评分:0.0
结构体之时间设计——计算为一年的第几天 摘要:解题思路:将有31天和30天的月份分开来用列表存放,然后计算注意事项:闰年2月比平年多一天并不是为奇数的月份的天数就有31天参考代码:a,b,c = map(int,input().split())L…… 题解列表 2023年03月14日 0 点赞 0 评论 53 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(Java代码) 摘要:第一次用了一个很蠢的方法,后面发现有Calendar类;参考代码:import java.util.Scanner;public class Main { public static void …… 题解列表 2020年12月10日 0 点赞 0 评论 180 浏览 评分:0.0
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