结构体之时间设计(简单理解) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define Dat struct DateDat{ int year,month,day;};void transform(D…… 题解列表 2023年12月07日 0 点赞 0 评论 68 浏览 评分:9.9
简单暴力破解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int month1[12]={31,28,31,30,31,30,31,31,30,31,30,31}…… 题解列表 2021年04月17日 0 点赞 0 评论 354 浏览 评分:9.9
[编程入门]结构体之时间设计 摘要:注意事项:1、从程序的第42行开始,不需要再写12月的代码了,因为第9行循环变量i最大范围是“最大的月份-1“,即12-1=11,不会轮到12月。2、一定要注意程序的第51行要加上一个‘;’,否则会出…… 题解列表 2022年08月10日 0 点赞 0 评论 125 浏览 评分:9.9
[编程入门]结构体之时间设计-题解(C语言代码) 摘要: #include struct time{ int year; int month; int day; }; int main…… 题解列表 2019年12月08日 0 点赞 0 评论 1107 浏览 评分:9.9
考察经典Switch语句的用法 摘要:解题思路:考察经典Switch语句的用法注意事项:注意switch语句是先找到符合项才继续执行的,时间久了,有点忘了参考代码:#include<iostream> using namespace s…… 题解列表 2024年06月13日 0 点赞 0 评论 128 浏览 评分:9.9
[编程入门]结构体之时间设计-题解(Python代码) 摘要:#### 简单明了,但是有点水 ```python def common(month, day): #平年 Sum = 0 month_lis = [31, 28, 31,…… 题解列表 2021年01月21日 0 点赞 1 评论 831 浏览 评分:9.9
[编程入门]结构体之时间设计-题解(Java代码) 摘要: import java.util.Scanner; /** * @Auther:王超 * @Date:S * @Version:1.0…… 题解列表 2020年04月29日 0 点赞 2 评论 627 浏览 评分:9.9
自己做的新手,欢迎指导 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct date{ int year; int month; int day;};int mod(int y,i…… 题解列表 2024年12月20日 2 点赞 0 评论 225 浏览 评分:10.0
[编程入门]结构体之时间设计-题解(c语言代码)附解 思路简单 摘要:#include<stdio.h> struct days{//定义结构体 int year; int month; int day; }p1; int main(){ sca…… 题解列表 2024年11月24日 2 点赞 0 评论 423 浏览 评分:10.0