第几天 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>struct Data{ int year; int month; int day;};int ComputerDays(struct…… 题解列表 2017年12月09日 0 点赞 0 评论 1062 浏览 评分:0.0
第几天 (C++代码) 摘要://把年月日分割成三个字符串,再转化为三个整数然后求解 #include <iostream> #include <cstdlib> #include <cmath> #include <de…… 题解列表 2018年02月11日 0 点赞 0 评论 649 浏览 评分:0.0
第几天 (Java代码) 摘要:解题思路: import java.util.Scanner; public class C1246 { public static void main(String[] args) { …… 题解列表 2018年03月19日 3 点赞 0 评论 870 浏览 评分:0.0
第几天 (Java代码) 摘要:解题思路:注意事项:导包import java.util.Calendar;import java.util.GregorianCalendar;参考代码:public class 第几天 { pub…… 题解列表 2018年05月04日 0 点赞 0 评论 569 浏览 评分:0.0
第几天 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> using namespace std; int check(int n) { if(…… 题解列表 2018年06月02日 0 点赞 0 评论 884 浏览 评分:6.0
第几天 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<math.h>int main(){ int n,i,j,m=0; int a[]…… 题解列表 2018年07月26日 1 点赞 0 评论 828 浏览 评分:0.0
第几天 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { int n,y,r; int a[12]…… 题解列表 2018年12月09日 1 点赞 0 评论 424 浏览 评分:0.0
第几天 (C语言代码) 摘要:解题思路:分闰年和平年计算注意事项:sum要在while循环中定义=0参考代码:#include<stdio.h>int main(){ int i,year,month,day,sum; …… 题解列表 2019年03月10日 0 点赞 0 评论 967 浏览 评分:6.3
第几天 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; int n…… 题解列表 2019年04月19日 0 点赞 0 评论 526 浏览 评分:0.0
第几天-题解(C++代码) 摘要:```cpp #include using namespace std; int a[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; int y,…… 题解列表 2019年07月08日 0 点赞 1 评论 584 浏览 评分:9.0