结构体之时间设计(利用Java自带的时间类) 摘要:解题思路:注意事项:参考代码:import java.text.ParseException; import java.text.SimpleDateFormat; import java.uti…… 题解列表 2024年04月26日 0 点赞 0 评论 116 浏览 评分:9.9
结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ struct Date { int year; int month; int day; }s; scanf…… 题解列表 2024年04月05日 0 点赞 0 评论 106 浏览 评分:0.0
简单易理解,利用循环解决此题 摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().split())d=0da=(1,3,5,7,8,10,12)xiao=(4,6,9,11)for i in range(1,…… 题解列表 2024年03月28日 0 点赞 0 评论 111 浏览 评分:9.9
结构体!!! 摘要:不知道还有没有哪里可以改进的#include<stdio.h> int main() { struct{ int year; int month; int …… 题解列表 2024年03月26日 0 点赞 0 评论 101 浏览 评分:0.0
结构体之时间设计 摘要:解题思路:先判断是闰年还是平年,闰年二月29天,平年二月28天,然后再按照月份将天数相加。注意事项:for循环的时候并不是直接月数,而是月数-1,加上输入的几号参考代码:import java.uti…… 题解列表 2024年03月17日 0 点赞 0 评论 113 浏览 评分:0.0
小白看懂的C语言结构体 摘要:解题思路:注意事项:参考代码:#include <stdio.h>struct riqi{ int year; int manth; int day;};int rennian(int n){ int…… 题解列表 2024年03月14日 0 点赞 0 评论 93 浏览 评分:9.9
结构体的使用 摘要:解题思路:注意事项:参考代码:#include <stdio.h>// 定义日期结构体struct Date { int year; int month; int day;};// 判断是否为闰年in…… 题解列表 2024年02月23日 0 点赞 0 评论 86 浏览 评分:9.9
for循环+结构体 摘要:解题思路:第一步:写结构体。第二步:判断是否是闰年一三五七八十腊是31天二月若为闰年则是29天,否则为28天其余为30天。注意事项:循环体不应该包含本月,否则会将本月全部日子加上去,应该循环结束后加上…… 题解列表 2024年01月31日 0 点赞 0 评论 78 浏览 评分:0.0
C++ 时间设计(涉及简单结构体使用) 摘要:```cpp #include using namespace std; //结构体 struct date{ int year; int month; int day; …… 题解列表 2024年01月31日 0 点赞 0 评论 67 浏览 评分:9.9
结构体之时间设计 摘要:解题思路:先根据年份判断平闰年调用函数实现天数判断最后返回天数即可注意事项:在定义类的时候不能定义为已有的函数名称,否则报错参考代码:#include<iostream>using namespace…… 题解列表 2024年01月27日 0 点赞 0 评论 72 浏览 评分:0.0