题解 2947: 不吉利日期

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

java--study||O.o

摘要:参考代码: import java.util.Scanner; public class Main { public static void main(String[] args) { ……

java--study||O.o

摘要:参考代码:import java.time.LocalDate; import java.util.Scanner; public class Main { public static vo……

不吉利日期

摘要:``` #include #include #include #include using namespace std; typedef long long ll; const i……

2947: 不吉利日期 Python 简单实现

摘要:解题思路:m保存每个月份的天数,week表示周几,当累加大于7的时候 对7取模即可注意事项:参考代码:w = int(input()) m = [0, 31, 28, 31, 30, 31, 30,……

2947(C++简单解)

摘要:AC代码: ```cpp #include using namespace std; void findUnluckyMonths(int w) { int daysInM……

暴力破题。。。

摘要:解题思路:       暴力破题。参考代码:#include <bits/stdc++.h> using namespace std; int main() {    int op[400]=……