[编程入门]时间设计 摘要:解题思路:数组定义来累加注意事项:判断闰年参考代码:#include<bits/stdc++.h>using namespace std;int a,b,c,s,z[15]={0,31,28,31,3…… 题解列表 2022年05月05日 0 点赞 0 评论 102 浏览 评分:0.0
c代码记录之结构体时间设计 摘要: #include struct Time{ int year,month,day; }_time; int main(){ s…… 题解列表 2023年12月29日 0 点赞 0 评论 66 浏览 评分:0.0
结构体之时间设计C语言 摘要:解题思路:这是最容易想到的解法,把每种情况列举出来。注意事项:参考代码:#include <stdio.h>struct Stu{ int year; int month; int date;};in…… 题解列表 2021年05月27日 0 点赞 0 评论 149 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:参考了其他人的,加了注释,可读性更高 ```c #include struct data{ int year; int month; int day; }; …… 题解列表 2020年10月12日 0 点赞 0 评论 191 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言) 摘要:```c #include int runyear(int year) { if(year%400==0||(year%4==0&&year%100!=0)) return 1; …… 题解列表 2021年09月09日 0 点赞 0 评论 144 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:#include struct date { int year; int month; int days; }; int main() { struct date a; …… 题解列表 2020年01月27日 0 点赞 0 评论 269 浏览 评分:0.0
一种超简单的方法 [编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct date{ int year; int month; int day;};int main(){ str…… 题解列表 2023年01月10日 0 点赞 0 评论 55 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> struct add{ int nian; int yue ; int ri ; };int main(){ int i,s…… 题解列表 2020年07月25日 0 点赞 0 评论 163 浏览 评分:0.0
1049: [编程入门]结构体之时间设计(python) 摘要: ~~~python def is_lun(y): if y%100 == 0: if y%400 == 0: return True …… 题解列表 2024年10月24日 0 点赞 0 评论 67 浏览 评分:0.0
1049: [编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:y,m,d=map(int,input().split()) d1=[31,28,31,30,31,30,31,31,30,31,30,31] d2=[31,29,3…… 题解列表 2022年01月29日 0 点赞 0 评论 93 浏览 评分:0.0