结构体之时间设计C语言 摘要:解题思路:这是最容易想到的解法,把每种情况列举出来。注意事项:参考代码:#include <stdio.h>struct Stu{ int year; int month; int date;};in…… 题解列表 2021年05月27日 0 点赞 0 评论 149 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:参考了其他人的,加了注释,可读性更高 ```c #include struct data{ int year; int month; int day; }; …… 题解列表 2020年10月12日 0 点赞 0 评论 190 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:采用数组将每月的天数存入数组中,再判断输入年份是否为闰年。注意事项:参考代码:#include<stdio.h>int main(){ int y,m,d; int i,n=0; int a…… 题解列表 2018年07月25日 0 点赞 0 评论 436 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言) 摘要:```c #include int runyear(int year) { if(year%400==0||(year%4==0&&year%100!=0)) return 1; …… 题解列表 2021年09月09日 0 点赞 0 评论 144 浏览 评分:0.0
一种超简单的方法 [编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct date{ int year; int month; int day;};int main(){ str…… 题解列表 2023年01月10日 0 点赞 0 评论 55 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路: 数组定义每个月天数,默认为平年365天,通过闰年判断决定计数器的初始值是1还是0 (默认平年计数器初始值为0,闰年为1) 通过循环遍历月份累计之前月份的天数,最后…… 题解列表 2018年11月09日 0 点赞 0 评论 529 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:#include struct date { int year; int mon; int day; }s; int main() { int x; scanf("%d%…… 题解列表 2020年01月31日 0 点赞 0 评论 362 浏览 评分:0.0
编写题解 1049: [编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct date{ int year; int month; int …… 题解列表 2022年03月13日 0 点赞 0 评论 147 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:#include int main() { int year,month,day; int leap,i,dayth; int monday[2][13]={{ 0,31,28,31,…… 题解列表 2020年02月22日 0 点赞 0 评论 325 浏览 评分:0.0
编写题解 1049: [编程入门]结构体之时间设计 摘要:解题思路:先判断平闰年,并用数组列出该年每月天数,遍历前几个月的天数求和后加上输入的几号即为结果。注意事项:参考代码:#include<stdio.h>struct dijitian{ int …… 题解列表 2022年04月06日 0 点赞 0 评论 183 浏览 评分:0.0