C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路: 数组定义每个月天数,默认为平年365天,通过闰年判断决定计数器的初始值是1还是0 (默认平年计数器初始值为0,闰年为1) 通过循环遍历月份累计之前月份的天数,最后…… 题解列表 2018年11月09日 0 点赞 0 评论 529 浏览 评分:0.0
1049:结构体之时间设计--思路 #C++ 摘要:##### 闰年条件 1. 4 的倍数 2. 400 的倍数 ```cpp year % 4 == 0 && year % 100 != 0 //% 取模 ``` ```cpp …… 题解列表 2024年09月17日 0 点赞 0 评论 105 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要: #include struct Date{ int year; int month; int day; }; bool is…… 题解列表 2020年02月14日 0 点赞 0 评论 288 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct date{ int year; int month; int day;}aa;void main(){ int a[12]…… 题解列表 2019年02月18日 0 点赞 0 评论 261 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class 给出年月日求天数 { public static void main(St…… 题解列表 2018年01月05日 0 点赞 0 评论 790 浏览 评分:0.0
[编程入门]结构体之时间设计 (C语言代码) 摘要:解题思路:注意事项:参考代码: #include<stdio.h> int main() {struct Date {int year; int month; …… 题解列表 2019年05月03日 0 点赞 0 评论 320 浏览 评分:0.0
1049: [编程入门]结构体之时间设计 摘要:```python class Year: def __init__(self): pass def put(self,year,mon,day): …… 题解列表 2023年12月20日 0 点赞 0 评论 83 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:解题思路: 不知道为什么使用typedef答案就是错误,搞不懂,求大神解答。注意事项:参考代码:#include<stdio.h> struct date{ int year; int month…… 题解列表 2020年09月26日 0 点赞 0 评论 442 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:/*定义一个结构体变量(包括年、月、日)。计算该日在本年中是第几天,注意闰年问题。*/#include<stdio.h>struct{ int year; int mon…… 题解列表 2018年04月08日 0 点赞 0 评论 464 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>struct time{int year;int month;int day;}…… 题解列表 2020年11月18日 0 点赞 0 评论 532 浏览 评分:0.0