[编程入门]结构体之时间设计-题解(C语言代码) 摘要:```c #include struct Date { int year; int month; int day; } date; int days(int year,i…… 题解列表 2020年02月14日 0 点赞 0 评论 374 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:```c #include struct Date{ int year; int month; int day; }; bool isLeap(int y…… 题解列表 2020年02月14日 0 点赞 0 评论 334 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要: #include struct Date{ int year; int month; int day; }; bool is…… 题解列表 2020年02月14日 0 点赞 0 评论 288 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:#include int main() { int year,month,day; int leap,i,dayth; int monday[2][13]={{ 0,31,28,31,…… 题解列表 2020年02月22日 0 点赞 0 评论 325 浏览 评分:0.0
(C语言代码)菜鸟第一次写,大佬多多关照 摘要:#include int num=0; int fun1(int t) { int month[13]={0,31,29,31,30,31,30,31,31,30,31,30,31}; …… 题解列表 2020年02月25日 0 点赞 0 评论 270 浏览 评分:8.0
[编程入门]结构体之时间设计-题解(C语言代码)(函数调用) 摘要:题目: 定义一个结构体变量(包括年、月、日)。计算该日在本年中是第几天,注意闰年问题。 1、判断闰年:普通年份可以被4整除;公立年份可以被400整除 2、结构体的定义 3、结构体的赋值 …… 题解列表 2020年02月27日 0 点赞 0 评论 323 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(Java代码) 摘要:```java public static class date//还没学java中结构体是怎么定义的,这里用的是类的的定义,原理和结构一样 { int year; int m…… 题解列表 2020年02月29日 0 点赞 0 评论 600 浏览 评分:9.9
[编程入门]结构体之时间设计-题解(C语言代码) 摘要: ```c #include int days(struct datetime); struct datetime //结…… 题解列表 2020年03月07日 0 点赞 0 评论 308 浏览 评分:9.0
[编程入门]结构体之时间设计-题解(Java代码) 摘要:没有写结构体的java 但也解决了问题 import java.util.Scanner; public class Main { public static void main(…… 题解列表 2020年03月15日 0 点赞 0 评论 317 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要: #include struct data { int year; int month; int day; };//定义结构体 …… 题解列表 2020年03月18日 0 点赞 0 评论 323 浏览 评分:0.0