数日子-题解(C++代码)
摘要:```cpp
#include
using namespace std;
int main(){
int n=719;
int day=0;
//判断2018是否……
数日子 (C++代码)
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;int main(){ int n=2018,s=19;……
数日子-题解(Java代码)输入日期
摘要:解题思路:注意事项:参考代码:Scanner sc = new Scanner(System.in);
String year = sc.next();
String month = sc.nex……
数日子 (C语言代码) 可AC
摘要:解题思路:注意事项:参考代码:#include <cstdlib>
#include <iostream>
#include <cmath>
#include <cctype>
#includ……
数日子-题解(C语言代码)题目煞笔
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int m[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; ……
1864——————数日子
摘要: n = [31,28,31,30,31,30,19] #已知2018年1月至7月每月的天数
sum = 0 #初始化为0
for i in n:
su……
数日子 (C语言代码)
摘要:解题思路:直接输出注意事项:参考代码:#include<stdio.h>int main(){printf("200\n");return 0;}……
数日子 (C++代码)
摘要:解题思路:注意事项:参考代码:这样就能通过,233333#include<iostream>using namespace std;int main(){ cout << 200 << endl; r……