[编程入门]结构体之时间设计-题解(Java代码) 摘要: import java.util.Scanner; /** * @Auther:王超 * @Date:S * @Version:1.0…… 题解列表 2020年04月29日 0 点赞 2 评论 627 浏览 评分:9.9
简单易理解,利用循环解决此题 摘要:解题思路:注意事项:参考代码: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
[编程入门]结构体之时间设计-题解(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 评论 189 浏览 评分:9.9
1049: [编程入门]结构体之时间设计--java自定义类 摘要:解题思路:定义一个类分别为年、月、日。输入一行字符串,定义一个字符串数组用空格为划分符将字符串划分定义一个整形数组将字符串数组中三个元素转为int类型年 = 字符串数组【0】月 = 字符串数组【1】日…… 题解列表 2021年12月11日 0 点赞 0 评论 292 浏览 评分: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
[编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().strip().split())s=0list1=['1','3','5',&…… 题解列表 2022年03月20日 0 点赞 1 评论 348 浏览 评分: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
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:````c /*定义一个结构体变量(包括年、月、日)。计算该日在本年中是第几天,注意闰年问题。 输入 年月日 输出 当年第几天 样例输入 2000 12 31 样例输出 366 …… 题解列表 2019年08月16日 0 点赞 5 评论 1771 浏览 评分:9.9
1049: [编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;struct tim{ ll n;…… 题解列表 2024年07月16日 0 点赞 0 评论 75 浏览 评分:9.9
编写题解 1049: [编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct Date{ int year; int month; int day;}time;//设置一个结构体int main(){…… 题解列表 2021年12月22日 0 点赞 0 评论 152 浏览 评分:9.9