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 评论 812 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:#include struct date { int year; int month; int day; }num; int Is_runnian(int x) { in…… 题解列表 2019年07月15日 0 点赞 0 评论 252 浏览 评分: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 评论 373 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;//月份 1~12月: a[1]~a[…… 题解列表 2018年11月12日 0 点赞 0 评论 312 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:1、记录一下每个月份的天数,默认使用平年。闰年的话最后再加一天就行。注意事项:参考代码:#include<stdio.h> //关于闰年的宏定义 #define LEAP_YEAR(…… 题解列表 2018年05月02日 0 点赞 0 评论 594 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(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> typedef struct …… 题解列表 2018年03月28日 3 点赞 0 评论 1202 浏览 评分:0.0
1049: [编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a[12]={31,28,31,30,31,30,31,31,30,31,30,31}; …… 题解列表 2021年11月11日 0 点赞 0 评论 155 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路: 思考半天没想出来,结果用一个数组解决了,感觉自己的代码还可以再 题解列表 2019年02月14日 0 点赞 0 评论 329 浏览 评分:0.0