题解 2947: 不吉利日期

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

筛选

暴力破题。。。

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

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……

编写题解 2947: 不吉利日期

摘要:解题思路:看代码注释注意事项:主要是如何写判断条件参考代码:#include<stdio.h>int main(){    int w,i;    scanf("%d\n",&w);//某年的一月一日……

不吉利日期

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

2947(C++简单解)

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