c代码记录之结构体时间设计 摘要: #include struct Time{ int year,month,day; }_time; int main(){ s…… 题解列表 2023年12月29日 0 点赞 0 评论 64 浏览 评分:0.0
1049: [编程入门]结构体之时间设计 摘要:```python class Year: def __init__(self): pass def put(self,year,mon,day): …… 题解列表 2023年12月20日 0 点赞 0 评论 82 浏览 评分:0.0
1049: [编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;struct date{ int n,y,r;};int m[13]= {0…… 题解列表 2023年12月09日 0 点赞 0 评论 91 浏览 评分:0.0
结构体之时间设计(简单理解) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define Dat struct DateDat{ int year,month,day;};void transform(D…… 题解列表 2023年12月07日 0 点赞 0 评论 67 浏览 评分:9.9
结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct sjb { int year; int month; int day;} sj;int main(){ int sum =…… 题解列表 2023年12月05日 0 点赞 0 评论 65 浏览 评分:0.0
1049: [编程入门]结构体之时间设计 摘要:题目解读:这道题就是给我们日期,让我们通过程序计算出该日期是这一年的第几天。解题思路及代码: 首先,我们要定义用于存储年,月,日的变量。在这里有两个方法,第一种如题目名,用定义结构体的方法…… 题解列表 2023年11月26日 0 点赞 0 评论 114 浏览 评分:9.9
结构体之时间设计 摘要:解题思路:注意事项:参考代码:def leap(year): if (year % 4 == 0 and year % 100 != 0) or year % 400 == 0: …… 题解列表 2023年11月24日 0 点赞 0 评论 49 浏览 评分:0.0
初学者结构体没学用其他简单方法做的,谁都可以看懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[12] = { 31,28,31,30,31,30,31,31,30,31,30,31 }; int…… 题解列表 2023年11月19日 0 点赞 0 评论 101 浏览 评分:9.0
结构体之时间设计(小白易懂) 摘要:小白易懂参考代码:#include <stdio.h>int main(int argc, char *argv[]){ struct jsts { int year; int month; int …… 题解列表 2023年11月17日 0 点赞 0 评论 52 浏览 评分: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