编写题解 1850: 判断第几天(简单易懂,适合新手)
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int y,m,d; int a[13]={00,31,28……
判断第几天-题解(C语言代码)谁说我一个二本学生就不会写ACM,加油兄弟们。
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int y,m,d,time=0; int mon[12]; mon[1]=……
判断第几天 (C++代码)(不好玩)
摘要:注意事项: 不好玩。参考代码:#include<bits/stdc++.h>
using namespace std;
int is(int num) {
if ((n……
判断第几天 (C语言代码)
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define f(a) (a%4==0&&a%100!=0||a%400==0)?(29):(28)int main(){ in……
1850: 判断第几天
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>
using namespace std;
int main()
{
string str;
in……
判断第几天 (C语言代码)
摘要:解题思路:注意事项:参考代码:#include <string.h>#include<stdio.h>#include <math.h>int data[13] = { 0,31,28,31,30,3……