[编程入门]结构体之时间设计-题解(C语言代码) 摘要: #include int leapYear ( int year ) { if( year % 4 == 0 ) { i…… 题解列表 2020年04月28日 0 点赞 2 评论 1066 浏览 评分:9.5
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 如果你看不懂这里的其他题解 点击我 摘要:题目分析 本题主要是训练结构体的创建 声明用法代码#include<stdio.h> leapyear(int a)//判断是否为闰年 { int b; if((a%4==0…… 题解列表 2017年06月13日 19 点赞 8 评论 2273 浏览 评分:9.8
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 评论 1318 浏览 评分:9.8
[编程入门]结构体之时间设计-题解(C语言代码)(简单明了,新手秒懂) 摘要:```c #include struct Date { int nian;//年 int yue;//月 int ri;//日 }; int main() { s…… 题解列表 2019年08月20日 0 点赞 3 评论 1378 浏览 评分:9.8
[编程入门]结构体之时间设计-题解(Python代码) python 3行 摘要:strftime() 函数接收以时间元组,并返回以可读字符串表示的当地时间,格式由参数format决定. %y 两位数的年份表示(00-99) %Y 四位数的年份表示(000-9999) %m …… 题解列表 2019年11月22日 0 点赞 4 评论 1418 浏览 评分:9.8
优质题解 崭新出厂,好摩易懂,可小刀 摘要:解题思路:1、定义结构体,并定义结构体变量 2、闰年:普通闰年:公历年份是4的倍数,且不是100的倍数的,为闰年(如2004年、2020年等就是闰年)。世纪闰年:公历年份是…… 题解列表 2023年06月10日 0 点赞 8 评论 2295 浏览 评分:9.8
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int month_day[2][13]={{0,31,29,31,30,31,30,31,31,30,31,30,31},{0,3…… 题解列表 2017年07月24日 0 点赞 0 评论 964 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:#include<stdio.h>struct Year{int year; int month; int day;};int main(){ struct Year a; int year,mont…… 题解列表 2017年08月30日 0 点赞 0 评论 883 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:先上代码,我们只需要20行#include<stdio.h> int main() { int day = 0, i; int a[12] = { 31,28,31,30,31,30,31…… 题解列表 2018年08月09日 0 点赞 0 评论 1103 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题11.1 (C++代码) 摘要:#include <iostream>using namespace std;struct date{ int year; int month; int day;};bool …… 题解列表 2019年03月25日 0 点赞 1 评论 1235 浏览 评分:9.9