C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:先上代码,我们只需要20行#include<stdio.h> int main() { int day = 0, i; int a[12] = { 31,28,31,30,31,30,31…… 题解列表 2018年08月09日 0 点赞 0 评论 843 浏览 评分:9.9
1049: [编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; //定义日期结构体 struct Date { int year; …… 题解列表 2023年09月24日 0 点赞 0 评论 85 浏览 评分:9.9
小白看懂的C语言结构体 摘要:解题思路:注意事项:参考代码:#include <stdio.h>struct riqi{ int year; int manth; int day;};int rennian(int n){ int…… 题解列表 2024年03月14日 0 点赞 0 评论 93 浏览 评分:9.9
结构体之时间设计(利用Java自带的时间类) 摘要:解题思路:注意事项:参考代码:import java.text.ParseException; import java.text.SimpleDateFormat; import java.uti…… 题解列表 2024年04月26日 0 点赞 0 评论 117 浏览 评分:9.9
1049: [编程入门]结构体之时间设计 摘要:```cpp #include using namespace std; struct Date { int year,mouth,day; }; int IsLeapY…… 题解列表 2023年02月24日 0 点赞 1 评论 140 浏览 评分:9.9
###[编程入门]结构体之时间设计-超easy版!! 摘要:###[编程入门]结构体之时间设计-超easy版!! 主要分四步: 1. 创建结构体 2. 判断年份是否为闰年 3. 记录各月份的总天数 4. 对天数累加 先看代码 #i…… 题解列表 2023年04月03日 0 点赞 0 评论 131 浏览 评分:9.9
[编程入门]结构体之时间设计(一看就懂) 摘要:```java Scanner sc = new Scanner(System.in); int year = sc.nextInt(); int Month = sc.nex…… 题解列表 2021年03月25日 0 点赞 0 评论 334 浏览 评分:9.9
[编程入门]结构体之时间设计-题解(C语言代码) 摘要: #include struct time{ int year; int month; int day; }; int main…… 题解列表 2019年12月08日 0 点赞 0 评论 1107 浏览 评分:9.9
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:解题思路:首先建立结构体,输入年月日,判断是否为闰年,然后建立一个数组进行输出,简简单单,通俗易懂注意事项:遍历时最后一天用输入的那个天数要加上参考代码:#include<iostream> usi…… 题解列表 2021年02月19日 0 点赞 0 评论 351 浏览 评分:9.9
萌新也能轻松AC之结构体之时间设计 摘要:# MarkDown编辑器基本使用说明 ```python class Today: 创建年月日结构体 def __init__(self, year, month, day): …… 题解列表 2022年09月27日 0 点赞 0 评论 246 浏览 评分:9.9