自己做的新手,欢迎指导 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct date{ int year; int month; int day;};int mod(int y,i…… 题解列表 2024年12月20日 2 点赞 0 评论 223 浏览 评分:10.0
[编程入门]结构体之时间设计-题解(c语言代码)附解 思路简单 摘要:#include<stdio.h> struct days{//定义结构体 int year; int month; int day; }p1; int main(){ sca…… 题解列表 2024年11月24日 2 点赞 0 评论 422 浏览 评分:10.0
计算这一日是这年的第几天 摘要://普通闰年:公历年份是4的倍数的,一般是闰年。 //世纪闰年:公历年份是整百数的,必须是400的倍数才是闰年 #include using namespace std; int main(…… 题解列表 2022年03月02日 0 点赞 0 评论 172 浏览 评分:9.9
[编程入门]结构体之时间设计-题解(C语言代码) 摘要: #include struct time{ int year; int month; int day; }; int main…… 题解列表 2019年12月08日 0 点赞 0 评论 1106 浏览 评分:9.9
[编程入门]结构体之时间设计 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args) {…… 题解列表 2022年03月18日 0 点赞 0 评论 251 浏览 评分:9.9
结构体之时间设计(简单理解) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define Dat struct DateDat{ int year,month,day;};void transform(D…… 题解列表 2023年12月07日 0 点赞 0 评论 67 浏览 评分:9.9
C++ 时间设计(涉及简单结构体使用) 摘要:```cpp #include using namespace std; //结构体 struct date{ int year; int month; int day; …… 题解列表 2024年01月31日 0 点赞 0 评论 67 浏览 评分:9.9
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:解题思路:首先建立结构体,输入年月日,判断是否为闰年,然后建立一个数组进行输出,简简单单,通俗易懂注意事项:遍历时最后一天用输入的那个天数要加上参考代码:#include<iostream> usi…… 题解列表 2021年02月19日 0 点赞 0 评论 350 浏览 评分:9.9
[编程入门]结构体之时间设计--傻瓜式写法(c语言) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> struct date{ int year; int month; int day; }; in…… 题解列表 2023年01月01日 0 点赞 0 评论 72 浏览 评分:9.9
考察经典Switch语句的用法 摘要:解题思路:考察经典Switch语句的用法注意事项:注意switch语句是先找到符合项才继续执行的,时间久了,有点忘了参考代码:#include<iostream> using namespace s…… 题解列表 2024年06月13日 0 点赞 0 评论 127 浏览 评分:9.9