[编程入门]结构体之时间设计-题解(C++代码) 摘要:```cpp #include using namespace std; struct date { int year; int month; int day;…… 题解列表 2020年04月28日 0 点赞 0 评论 454 浏览 评分:7.3
c语言结构体之时间设计-题解(隔壁老爷爷都说好用) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int a[12]={31,28,31,30,31,30,31,31,30,31,30,31…… 题解列表 2020年11月28日 0 点赞 1 评论 399 浏览 评分:7.3
[编程入门]结构体之时间设计 (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
优质题解 Manchester- C语言程序设计教程(第三版)课后习题11.1 摘要:解题思路:用一个长度为12的数组,记录每个月的天数,除了2月先不记录;输入日期,判断闰年2月赋值29,平年28;计算是第几天,输出;参考代码:#include <stdio.h> #include …… 题解列表 2017年12月20日 24 点赞 25 评论 8507 浏览 评分:6.5
7月和8月都是大月,都是31天,所以在这里进行分类就可以很好解决这个问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct node{ int year; int month; …… 题解列表 2021年05月11日 0 点赞 0 评论 251 浏览 评分:6.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:#include #include struct date { int y; int m; int d }; int main() { in…… 题解列表 2021年01月30日 0 点赞 0 评论 266 浏览 评分:6.0
[编程入门]结构体之时间设计-题解(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
最笨的方法 摘要:解题思路:首先输入结构体一变量的年月日,然后转到count函数先对闰年进行判断,取余为零的就是闰年。下一步到对月份的判断,在把每个月份的数累加参考代码:#include <stdio.h>int co…… 题解列表 2021年05月07日 0 点赞 0 评论 162 浏览 评分: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