简单易理解,利用循环解决此题 摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().split())d=0da=(1,3,5,7,8,10,12)xiao=(4,6,9,11)for i in range(1,…… 题解列表 2024年03月28日 0 点赞 0 评论 111 浏览 评分:9.9
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:个人做法 #include #include struct TIME { int year; int month; …… 题解列表 2020年01月13日 0 点赞 0 评论 803 浏览 评分:9.9
[编程入门]结构体之时间设计-题解(Java代码) 摘要:```java public static class date//还没学java中结构体是怎么定义的,这里用的是类的的定义,原理和结构一样 { int year; int m…… 题解列表 2020年02月29日 0 点赞 0 评论 599 浏览 评分:9.9
[编程入门]结构体之时间设计-题解(Python代码) 摘要:解题思路:注意事项:参考代码:year,mouth,day=map(int,input().split())list1=[31,28,31,30,31,30,31,31,30,31,30,31]if …… 题解列表 2023年11月04日 0 点赞 0 评论 188 浏览 评分:9.9
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:````c /*定义一个结构体变量(包括年、月、日)。计算该日在本年中是第几天,注意闰年问题。 输入 年月日 输出 当年第几天 样例输入 2000 12 31 样例输出 366 …… 题解列表 2019年08月16日 0 点赞 5 评论 1771 浏览 评分:9.9
1049: [编程入门]结构体之时间设计--java自定义类 摘要:解题思路:定义一个类分别为年、月、日。输入一行字符串,定义一个字符串数组用空格为划分符将字符串划分定义一个整形数组将字符串数组中三个元素转为int类型年 = 字符串数组【0】月 = 字符串数组【1】日…… 题解列表 2021年12月11日 0 点赞 0 评论 291 浏览 评分:9.9
判断一年的第几天 摘要:参考代码:#include<stdio.h>struct date { int year; int month; int day;};int main() { struct d…… 题解列表 2024年08月31日 1 点赞 0 评论 42 浏览 评分:9.9
[编程入门]结构体之时间设计(水题,超级笨蛋的方法) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>struct time{ int year,month,day;};int main(){ struct time t; int da…… 题解列表 2023年01月08日 0 点赞 0 评论 42 浏览 评分:9.9
[编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().strip().split())s=0list1=['1','3','5',&…… 题解列表 2022年03月20日 0 点赞 1 评论 348 浏览 评分:9.9
1049: [编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; //定义日期结构体 struct Date { int year; …… 题解列表 2023年09月24日 0 点赞 0 评论 85 浏览 评分:9.9