[编程入门]结构体之时间设计-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct data{ int year; int month; int day;};int main(){ int i,sum=0;…… 题解列表 2020年11月23日 0 点赞 0 评论 178 浏览 评分:6.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:注意事项:参考代码://jgt #include<stdio.h> struct DAY { int year; int month; int day; …… 题解列表 2017年10月30日 1 点赞 0 评论 647 浏览 评分:6.0
C语言程序设计教程(第三版)课后习题11.1 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.*; import java.math.*; public class Main { public static void ma…… 题解列表 2018年10月13日 1 点赞 0 评论 810 浏览 评分:6.0
最笨的方法 摘要:解题思路:首先输入结构体一变量的年月日,然后转到count函数先对闰年进行判断,取余为零的就是闰年。下一步到对月份的判断,在把每个月份的数累加参考代码:#include <stdio.h>int co…… 题解列表 2021年05月07日 0 点赞 0 评论 162 浏览 评分:6.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:解题思路:思绪有点乱,大概就这样了注意事项:参考代码:#includeint main(){ int year,month,day; scanf("%d %d %d",&year,&mon…… 题解列表 2020年11月23日 0 点赞 0 评论 282 浏览 评分:6.0
优质题解 Manchester- C语言程序设计教程(第三版)课后习题11.1 摘要:解题思路:用一个长度为12的数组,记录每个月的天数,除了2月先不记录;输入日期,判断闰年2月赋值29,平年28;计算是第几天,输出;参考代码:#include <stdio.h> #include …… 题解列表 2017年12月20日 24 点赞 25 评论 8507 浏览 评分:6.5
[编程入门]结构体之时间设计 (Python描述) 摘要:```python x, y, z = map(int, input().split()) sn = 0 for i in range(1,y): sn += 30 if i…… 题解列表 2020年04月10日 0 点赞 0 评论 527 浏览 评分:7.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:```c #include struct stu { int year; int month; int day; }a; int main(void) { int …… 题解列表 2021年02月01日 0 点赞 0 评论 339 浏览 评分:7.3
[编程入门]结构体之时间设计-题解(C++代码) 摘要:```cpp #include using namespace std; struct date { int year; int month; int day;…… 题解列表 2020年04月28日 0 点赞 0 评论 454 浏览 评分:7.3
[编程入门]结构体之时间设计-题解(Java代码) 摘要:本题需要考虑闰年的问题,闰年二月有29天,平年二月有28天, import java.util.Scanner; public class Main{ public static void…… 题解列表 2019年08月12日 0 点赞 0 评论 654 浏览 评分:7.3