[编程入门]结构体之时间设计-题解(C语言代码) 摘要:#include struct date { int year; int month; int day; }num; int Is_runnian(int x) { in…… 题解列表 2019年07月15日 0 点赞 0 评论 253 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:参考了其他人的,加了注释,可读性更高 ```c #include struct data{ int year; int month; int day; }; …… 题解列表 2020年10月12日 0 点赞 0 评论 190 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void S(int Y,int M…… 题解列表 2017年07月08日 2 点赞 1 评论 694 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:闰年判断(整数年份被400整除,非整数年份被四整除)即比平年多一天(二月为29天)注意事项:注意结构体的用法 在main中要先定义参考代码:#include<stdio.h>struct d…… 题解列表 2018年11月30日 0 点赞 0 评论 361 浏览 评分:0.0
[编程入门]结构体之时间设计 (C++代码) 摘要:解题思路: 大家都懂注意事项: 应该错误都会犯在月份这里 ,5月15日应该知识算前面四月,多理解这点就ok了参考代码:#include<bits/stdc++.h>using namesp…… 题解列表 2019年04月17日 0 点赞 0 评论 458 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:参考代码:#include<stdio.h>struct Date{ int year; int month; int day; int leap; int count;…… 题解列表 2018年05月29日 0 点赞 0 评论 367 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> struct add{ int nian; int yue ; int ri ; };int main(){ int i,s…… 题解列表 2020年07月25日 0 点赞 0 评论 163 浏览 评分:0.0
结构体!!! 摘要:不知道还有没有哪里可以改进的#include<stdio.h> int main() { struct{ int year; int month; int …… 题解列表 2024年03月26日 0 点赞 0 评论 101 浏览 评分:0.0
[编程入门]结构体之时间设计-题解(C语言代码) 摘要:```c #include struct week{ int year; int month; int day; }; int main() { st…… 题解列表 2020年01月11日 0 点赞 0 评论 288 浏览 评分:0.0
不用结构体我照样写!!! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int number = 0;int i = 0;int year = 0;int month = 0;int day = 0;//这…… 题解列表 2024年05月12日 0 点赞 0 评论 64 浏览 评分:0.0