[编程入门]结构体之时间设计-题解(C语言代码) 摘要: #include typedef struct{ int year; int month; int day; }dat…… 题解列表 2020年04月02日 0 点赞 0 评论 289 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int Year,Month,Day; scanf("%d%d%d",&Year,&Month,&D…… 题解列表 2017年07月23日 0 点赞 0 评论 799 浏览 评分:0.0
计算某日在那年中是第几天(注意闰年) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct YMD{ int year; int month; int day;};int main(){ s…… 题解列表 2019年04月09日 0 点赞 0 评论 407 浏览 评分:0.0
琪露诺的编程教室(C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int wmw(int a){ int b; if(a%400==0||a&4==0&&a%…… 题解列表 2017年12月26日 0 点赞 0 评论 664 浏览 评分:0.0
数组结构体时间设计 摘要:#include<stdio.h>typedef struct today{ int year; int month; int day;}today;int main(){ today date; i…… 题解列表 2021年08月07日 0 点赞 0 评论 164 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码)计算一年中的某天是第几天 思路清晰! 摘要:选择一种自己熟悉的编程习惯来写,没思路的时候就参考一下其他同学的,然后用自己的方法写出来,这样才会有进步的吧!参考代码如下:#include <stdio.h> typedef struct …… 题解列表 2018年03月28日 3 点赞 0 评论 1202 浏览 评分:0.0
1049: [编程入门]结构体之时间设计-题解(python) 摘要:解题思路:注意事项:参考代码:y,m,d = map(int,input().split())m1,m3,m5,m7,m8,m10,m12 = 31,31,31,31,31,31,31m4,m6,m9…… 题解列表 2021年10月16日 0 点赞 0 评论 145 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> typedef struct { int year; int month; int day; }…… 题解列表 2020年11月24日 0 点赞 0 评论 155 浏览 评分:0.0
1049时间设计(结构体实现) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>typedef struct shijian{ int nian; int yue; int ru;}shijian;int main(…… 题解列表 2024年05月23日 0 点赞 0 评论 63 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:#include struct date { int year; int month; int days; }; int main() { struct date a; …… 题解列表 2020年01月27日 0 点赞 0 评论 265 浏览 评分:0.0