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
1049: [编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:y,m,d=map(int,input().split()) d1=[31,28,31,30,31,30,31,31,30,31,30,31] d2=[31,29,3…… 题解列表 2022年01月29日 0 点赞 0 评论 93 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:```c #include struct time // 定义结构体变量time { int year; int month; int day; }; int main(…… 题解列表 2021年01月30日 0 点赞 0 评论 313 浏览 评分:0.0
[编程入门]结构体之时间设计 极简利用函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int days(int i){ int t=0; int num=0; int a[13]={0,31,28,31,…… 题解列表 2024年12月26日 0 点赞 0 评论 194 浏览 评分:0.0
结构体之时间设计C语言 摘要:```c #define _CRT_SECURE_NO_WARNINGS 1 #include int main() { int a[12] = { 31,28,31,30,31,30,…… 题解列表 2023年10月07日 0 点赞 0 评论 75 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(Java代码) 摘要:```java /** * 定义一个结构体变量(包括年、月、日)。计算该日在本年中是第几天,注意闰年问题。 * 解题思路: * 如果是闰年,那么2月就只有29天,否则就是…… 题解列表 2020年06月14日 0 点赞 0 评论 319 浏览 评分: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
结构体!!! 摘要:不知道还有没有哪里可以改进的#include<stdio.h> int main() { struct{ int year; int month; int …… 题解列表 2024年03月26日 0 点赞 0 评论 101 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言描述 大佬们别喷 写得有点直接) 摘要:解题思路:最不用大脑的方式注意事项:参考代码:#include <stdio.h>struct Calculate{ int year; int month; int day;…… 题解列表 2018年04月08日 0 点赞 0 评论 743 浏览 评分:0.0
不用结构体我照样写!!! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int number = 0;int i = 0;int year = 0;int month = 0;int day = 0;//这…… 题解列表 2024年05月12日 0 点赞 0 评论 64 浏览 评分:0.0