【鼠鼠】用结构体的方法,适合小白 摘要:``````cpp #include //#include #include #include #include #include using namespace std; str…… 题解列表 2022年04月23日 0 点赞 0 评论 135 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int n,y,r,i; cin>>n>>y>>r; switch(…… 题解列表 2017年11月16日 0 点赞 0 评论 807 浏览 评分:0.0
[编程入门]结构体之时间设计 (C语言代码)(不用数组和switch) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct time{ int year; int month; int day;};int m (){ struct time …… 题解列表 2019年05月21日 0 点赞 0 评论 304 浏览 评分:0.0
新手必看最简思路 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int xx(int n,int y){ int day=0,a=0; if(n%400==0||(n%4==0&&n%100!=0…… 题解列表 2024年12月12日 0 点赞 0 评论 218 浏览 评分:0.0
1049:[编程入门]结构体之时间设计 摘要:```c #include typedef struct YMD{ int YEAR; int MON; int DAY; }YMD; int judge_leap(YMD da…… 题解列表 2022年05月09日 0 点赞 0 评论 142 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int Judge(int year){ if((year%4==0&&year%100!=0)||year%400==0) …… 题解列表 2018年05月21日 0 点赞 0 评论 435 浏览 评分:0.0
1049: [编程入门]结构体之时间设计 摘要:解题思路:题目主要要搞清楚什么是闰年,什么是平年,然后闰年每个月有多少天,平年每个月有多少天。注意事项:参考代码:#include <bits/stdc++.h> using namespace s…… 题解列表 2023年05月09日 0 点赞 0 评论 59 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct { int year,month,day,days; }d1; int main(){ scanf("%d…… 题解列表 2017年10月22日 0 点赞 0 评论 596 浏览 评分:0.0
结构体之时间设计 摘要: #include #include #include #include using namespace std; struct demo …… 题解列表 2022年10月12日 0 点赞 0 评论 105 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include using namespace std; struct time{ int year; int month; int …… 题解列表 2020年08月15日 0 点赞 0 评论 184 浏览 评分:0.0