[编程入门]结构体之时间设计(C语言入门级,易懂代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>typedef struct fun{ int year; int month; int day;} sum;in…… 题解列表 2022年02月07日 0 点赞 0 评论 205 浏览 评分:9.9
已过多少天 摘要:解题思路:switch中的break注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct{ int year,month,day…… 题解列表 2022年02月20日 0 点赞 0 评论 156 浏览 评分:9.9
1049: [编程入门]结构体之时间设计 摘要:解题思路:先给出大致公式,然后再细分不同的情况进行处理注意事项:参考代码:y, m, d = map(int, input().split())num = 30*(m-1) + dfor i in r…… 题解列表 2022年02月22日 0 点赞 0 评论 138 浏览 评分:0.0
计算这一日是这年的第几天 摘要://普通闰年:公历年份是4的倍数的,一般是闰年。 //世纪闰年:公历年份是整百数的,必须是400的倍数才是闰年 #include using namespace std; int main(…… 题解列表 2022年03月02日 0 点赞 0 评论 172 浏览 评分:9.9
结构体之时间设计 摘要:解题思路:注意事项: 一月份要单独考虑参考代码:a=list(map(int,input().split()))b=a[0]c=a[1]d=a[2]sum=0e=[31,29,31,30,31,30,…… 题解列表 2022年03月04日 0 点赞 0 评论 236 浏览 评分:0.0
1049: [编程入门]结构体之时间设计 摘要:解题思路:既然是C++,用class代替struct也是很正常的吧。计算第几天就是建一个数组存放每个月有几天,然后把前面的月的天数加起来,加上day,最后闰年+1。注意事项:好像也没啥可说的。参考代码…… 题解列表 2022年03月06日 0 点赞 0 评论 170 浏览 评分:9.9
编写题解 1049: [编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct date{ int year; int month; int …… 题解列表 2022年03月13日 0 点赞 0 评论 147 浏览 评分:0.0
简单的结构体定义 摘要:解题思路:定义一个结构体判断平年还是闰年取值输出即可注意事项:函数内一定加struct参考代码:#include<stdio.h>struct shijian//定义一个结构体{ int yea…… 题解列表 2022年03月18日 0 点赞 0 评论 200 浏览 评分:0.0
[编程入门]结构体之时间设计 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args) {…… 题解列表 2022年03月18日 0 点赞 0 评论 251 浏览 评分:9.9
[编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().strip().split())s=0list1=['1','3','5',&…… 题解列表 2022年03月20日 0 点赞 1 评论 348 浏览 评分:9.9