数日子-题解(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 评论 363 浏览 评分:0.0
数日子-题解(C++代码) 摘要:```cpp #include using namespace std; int main(){ int n=719; int day=0; //判断2018是否…… 题解列表 2020年03月28日 0 点赞 0 评论 396 浏览 评分:0.0
数日子 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;int main(){ int n=2018,s=19;…… 题解列表 2018年07月30日 0 点赞 0 评论 514 浏览 评分: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 评论 179 浏览 评分:0.0
数日子 (C语言代码) 可AC 摘要:解题思路:注意事项:参考代码:#include <cstdlib> #include <iostream> #include <cmath> #include <cctype> #includ…… 题解列表 2018年11月15日 8 点赞 0 评论 948 浏览 评分:0.0
1864: 数日子 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<bits/stdc++.h> using namespace std; int main() { …… 题解列表 2023年10月08日 0 点赞 0 评论 90 浏览 评分:0.0
数日子-题解(Java代码)输入日期 摘要:解题思路:注意事项:参考代码:Scanner sc = new Scanner(System.in); String year = sc.next(); String month = sc.nex…… 题解列表 2021年01月25日 0 点赞 0 评论 268 浏览 评分:0.0
1864: 数日子 摘要:解题思路:比输入版判断日子简单,只需要初始化year、month、day,直接计算total注意事项:闰年&&月份>2 才+1参考代码:#include <stdio.h> int main() {…… 题解列表 2021年03月05日 0 点赞 0 评论 208 浏览 评分:0.0
数日子 (C语言代码) 摘要:解题思路:直接输出注意事项:参考代码:#include<stdio.h>int main(){printf("200\n");return 0;}…… 题解列表 2018年07月26日 0 点赞 1 评论 304 浏览 评分:2.0
数日子 (C++代码) 摘要:解题思路:注意事项:参考代码:这样就能通过,233333#include<iostream>using namespace std;int main(){ cout << 200 << endl; r…… 题解列表 2018年08月03日 0 点赞 0 评论 585 浏览 评分:2.0