夜奏花
夜奏花
全部文章
题解
归档
标签
去牛客网
登录
/
注册
夜奏花的博客
全部文章
/ 题解
(共3篇)
题解 | #Day of Week#
法一:硬算 暴力 #include <bits/stdc++.h> using namespace std; int day[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; string mmon[13]={"","January","Febr...
C++
2022-06-22
1
403
题解 | #日期差值#
#include <bits/stdc++.h> using namespace std; int day[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; int leap(int year){ if((year%4==0 &&...
C++
2022-06-22
4
540
Old Bill问题解决
#include <bits/stdc++.h> using namespace std; int main(){ int n,x,y,z,sum,flag=0; while(cin>>n){ cin>>x>>y>>z; fl...
C++
2022-06-20
1
388