[编程入门]结构体之时间设计-题解(Java代码) 摘要:没有写结构体的java 但也解决了问题 import java.util.Scanner; public class Main { public static void main(…… 题解列表 2020年03月15日 0 点赞 0 评论 316 浏览 评分:0.0
结构体之时间设计C语言 摘要:解题思路:这是最容易想到的解法,把每种情况列举出来。注意事项:参考代码:#include <stdio.h>struct Stu{ int year; int month; int date;};in…… 题解列表 2021年05月27日 0 点赞 0 评论 149 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言) 摘要:```c #include int runyear(int year) { if(year%400==0||(year%4==0&&year%100!=0)) return 1; …… 题解列表 2021年09月09日 0 点赞 0 评论 143 浏览 评分:0.0
一种超简单的方法 [编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct date{ int year; int month; int day;};int main(){ str…… 题解列表 2023年01月10日 0 点赞 0 评论 55 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:参考了其他人的,加了注释,可读性更高 ```c #include struct data{ int year; int month; int day; }; …… 题解列表 2020年10月12日 0 点赞 0 评论 190 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:采用数组将每月的天数存入数组中,再判断输入年份是否为闰年。注意事项:参考代码:#include<stdio.h>int main(){ int y,m,d; int i,n=0; int a…… 题解列表 2018年07月25日 0 点赞 0 评论 436 浏览 评分:0.0
编写题解 1049: [编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct date{ int year; int month; int …… 题解列表 2022年03月13日 0 点赞 0 评论 147 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> struct add{ int nian; int yue ; int ri ; };int main(){ int i,s…… 题解列表 2020年07月25日 0 点赞 0 评论 163 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:有些时候,解决日期类要先看看是否要预处理。参考代码:#include <stdio.h>#include <stdlib.h>#define IS_LEAPYEAR(x) (x%4==0&&x%100…… 题解列表 2017年07月22日 1 点赞 0 评论 668 浏览 评分:0.0
1049: [编程入门]结构体之时间设计(python) 摘要: ~~~python def is_lun(y): if y%100 == 0: if y%400 == 0: return True …… 题解列表 2024年10月24日 0 点赞 0 评论 67 浏览 评分:0.0