C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:#include <stdio.h>int check(int year){ if((year%4==0)&&(year%100!=0)|(year%400==0)) return 1; …… 题解列表 2019年01月22日 0 点赞 0 评论 280 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int sum,i; &n 题解列表 2019年01月14日 0 点赞 0 评论 388 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct data{ int year; int month; int day;};int main(){ int i,sum; i…… 题解列表 2019年01月05日 1 点赞 2 评论 1141 浏览 评分:9.8
优质题解 小白也能看懂的C语言结构体 (C语言爱好者) 摘要:解题思路:第一步:定义结构体为了书写方便,我将结构体重名为DATE。第二步:用数组保存平年的12个月份的天数。什么是平年?是否有人不知道,平年是和闰年相对的,平年的2月是28天,闰年的2月是29天,所…… 题解列表 2019年01月04日 5 点赞 2 评论 2027 浏览 评分:9.2
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路: 注意事项: 参考代码: #include struct day { int year; int month; int day…… 题解列表 2019年01月03日 4 点赞 3 评论 499 浏览 评分:9.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:#include<stdio.h> #define LEAP_YEAR(y) (y%4==0&&y%100!=0||y%400==0)?1:0 typedef struct CCalendar …… 题解列表 2018年12月14日 1 点赞 0 评论 325 浏览 评分:0.0
switch函数打造,简单清晰的代码; 摘要:#include struct ggt { int year; int month; int day; }; int zdy(int year, int month, int day); …… 题解列表 2018年12月11日 9 点赞 0 评论 860 浏览 评分:9.5
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:闰年判断(整数年份被400整除,非整数年份被四整除)即比平年多一天(二月为29天)注意事项:注意结构体的用法 在main中要先定义参考代码:#include<stdio.h>struct d…… 题解列表 2018年11月30日 0 点赞 0 评论 360 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言描述 超级简单的方法,适合于入门) 摘要:解题思路:主要用到的是数组,也可以用switch语句,会显得更有逼格哦判断闰年的条件四年一闰,百年不闰,四百年再闰润年2月有29天,平年2月有28天如果是闰年,在天数上加1就是了建立一个数组,分别是 …… 题解列表 2018年11月16日 1 点赞 0 评论 900 浏览 评分:9.0
C语言程序设计教程(第三版)课后习题11.1 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;struct date{ int year; int month; int day; int…… 题解列表 2018年11月13日 0 点赞 0 评论 516 浏览 评分:0.0