数日子-题解(Java代码)输入日期 摘要:解题思路:注意事项:参考代码:Scanner sc = new Scanner(System.in); String year = sc.next(); String month = sc.nex…… 题解列表 2021年01月25日 0 点赞 0 评论 265 浏览 评分:0.0
1864: 数日子 摘要:解题思路:比输入版判断日子简单,只需要初始化year、month、day,直接计算total注意事项:闰年&&月份>2 才+1参考代码:#include <stdio.h> int main() {…… 题解列表 2021年03月05日 0 点赞 0 评论 195 浏览 评分:0.0
数日子-题解(C语言代码)题目煞笔 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int m[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; …… 题解列表 2020年08月17日 0 点赞 0 评论 349 浏览 评分:0.0
数日子-题解(C++代码) 摘要:```cpp #include using namespace std; int main(){ int n=719; int day=0; //判断2018是否…… 题解列表 2020年03月28日 0 点赞 0 评论 378 浏览 评分:0.0
数日子 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;int main(){ int n=2018,s=19;…… 题解列表 2018年07月30日 0 点赞 0 评论 505 浏览 评分:0.0
1864——————数日子 摘要: n = [31,28,31,30,31,30,19] #已知2018年1月至7月每月的天数 sum = 0 #初始化为0 for i in n: su…… 题解列表 2022年07月08日 0 点赞 0 评论 168 浏览 评分:0.0
1864: 数日子 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<bits/stdc++.h> using namespace std; int main() { …… 题解列表 2023年10月08日 0 点赞 0 评论 86 浏览 评分:0.0
数日子 (C语言代码) 可AC 摘要:解题思路:注意事项:参考代码:#include <cstdlib> #include <iostream> #include <cmath> #include <cctype> #includ…… 题解列表 2018年11月15日 8 点赞 0 评论 937 浏览 评分:0.0