[编程入门]结构体之时间设计-题解(C语言代码) 摘要:#include <stdio.h>typedef struct Zero{ int years; //年 int month; //月 int day; //日 …… 题解列表 2020年09月08日 0 点赞 0 评论 250 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:#include <stdio.h>struct days{int year;int month;int day;};int judge(int year){ int b; if((yea…… 题解列表 2018年03月04日 0 点赞 0 评论 534 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C++代码-类的基础运用:构造函数,析构函数,this指针) 摘要: #include using namespace std; class date { public: int year; in…… 题解列表 2020年10月20日 0 点赞 0 评论 331 浏览 评分:0.0
日期非结构解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, y, r; int h; int i; int sum=0; scanf("%d%d%d", &n…… 题解列表 2023年01月20日 0 点赞 0 评论 69 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(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语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路: 思考半天没想出来,结果用一个数组解决了,感觉自己的代码还可以再 题解列表 2019年02月14日 0 点赞 0 评论 329 浏览 评分: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
[编程入门]结构体之时间设计 (C++代码) 摘要:解题思路: 大家都懂注意事项: 应该错误都会犯在月份这里 ,5月15日应该知识算前面四月,多理解这点就ok了参考代码:#include<bits/stdc++.h>using namesp…… 题解列表 2019年04月17日 0 点赞 0 评论 458 浏览 评分:0.0
结构体之时间设计规范解 摘要:解题思路:使用 isLeapYear函数来判断输入的年份是否为闰年,该函数返回1表示是闰年,返回0表示不是闰年。然后,使用 calculateDayOfYear函数来计算该日在本年中是第几天。在函数中…… 题解列表 2023年08月21日 0 点赞 0 评论 194 浏览 评分:0.0
1049: [编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct tim { int y; int m; int d; }; int ispr(int…… 题解列表 2022年06月20日 0 点赞 0 评论 62 浏览 评分:0.0