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 评论 151 浏览 评分:9.9
[编程入门]结构体之时间设计-题解(C++代码) 摘要:注意事项: 注意闰年和平年的区别,闰年二月有29天,平年的二月有28天参考代码:#include<iostream> //#include<bits/stdc++.h> #include<c…… 题解列表 2021年01月07日 0 点赞 0 评论 751 浏览 评分: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 <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 评论 139 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:#include<stdio.h>struct Year{int year; int month; int day;};int main(){ struct Year a; int year,mont…… 题解列表 2017年08月30日 0 点赞 0 评论 770 浏览 评分:9.9
C语言 结构体之时间设计& 摘要:解题思路:注意事项:参考代码:#include <stdio.h>struct calendar{ int year; int month; int day;}date, * p;…… 题解列表 2022年11月30日 0 点赞 0 评论 101 浏览 评分:9.9