[编程入门]结构体之时间设计-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct numberofday{ int year; int month; int day;} d;const int r=30;…… 题解列表 2020年11月28日 0 点赞 0 评论 302 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C++代码-类的基础运用:构造函数,析构函数,this指针) 摘要: #include using namespace std; class date { public: int year; in…… 题解列表 2020年10月20日 0 点赞 0 评论 331 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class 给出年月日求天数 { public static void main(St…… 题解列表 2018年01月05日 0 点赞 0 评论 790 浏览 评分: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语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:#include<stdio.h>struct shuru{ int year; int month; int day;};int main(){ struct shuru chu; int s…… 题解列表 2017年08月22日 0 点赞 0 评论 813 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:```c #include struct Date { int year; int month; int day; } date; int days(int year,i…… 题解列表 2020年02月14日 0 点赞 0 评论 373 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码)计算一年中的某天是第几天 思路清晰! 摘要:选择一种自己熟悉的编程习惯来写,没思路的时候就参考一下其他同学的,然后用自己的方法写出来,这样才会有进步的吧!参考代码如下:#include <stdio.h> typedef struct …… 题解列表 2018年03月28日 3 点赞 0 评论 1202 浏览 评分:0.0
[编程入门]结构体之时间设计 (C++代码) 摘要:解题思路: 大家都懂注意事项: 应该错误都会犯在月份这里 ,5月15日应该知识算前面四月,多理解这点就ok了参考代码:#include<bits/stdc++.h>using namesp…… 题解列表 2019年04月17日 0 点赞 0 评论 458 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:#include<stdio.h>#include<string.h>struct INFO{ int year; int mon; int day; int num;};int main() { s…… 题解列表 2017年06月19日 0 点赞 0 评论 741 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:#include <stdio.h>typedef struct Zero{ int years; //年 int month; //月 int day; //日 …… 题解列表 2020年09月08日 0 点赞 0 评论 250 浏览 评分:0.0