叙述一个网站的建设过程,国外租用服务器的平台,wordpress反代cdn,怀柔富阳网站建设日期统计
本题来自于#xff1a;2023年十四届省赛大学B组真题
主要考察#xff1a;暴力。
代码放在下面#xff0c;代码中重要的细节全都写了注释#xff0c;非常清晰明了#xff1a;
#include bits/stdc.h //万能头文件
using namespace std;int main() {…日期统计
本题来自于2023年十四届省赛大学B组真题
主要考察暴力。
代码放在下面代码中重要的细节全都写了注释非常清晰明了
#include bits/stdc.h //万能头文件
using namespace std;int main() {int array[100] {5, 6, 8, 6, 9, 1, 6, 1, 2, 4, 9, 1, 9, 8, 2, 3, 6, 4, 7, 7,5, 9, 5, 0, 3, 8, 7, 5, 8, 1, 5, 8, 6, 1, 8, 3, 0, 3, 7, 9,2, 7, 0, 5, 8, 8, 5, 7, 0, 9, 9, 1, 9, 4, 4, 6, 8, 6, 3, 3,8, 5, 1, 6, 3, 4, 6, 7, 0, 7, 8, 2, 7, 6, 8, 9, 5, 6, 5, 6,1, 4, 0, 1, 0, 0, 9, 4, 8, 0, 9, 1, 2, 8, 5, 0, 2, 5, 3, 3}; //先按题目要求放到数组中int daysInMonth[13] {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};//2023年每月的天数电脑上自带日期可以随便查 0索引不用从1索引开始用代表1月份int ans 0; //记录符合条件的日期for (int month 1; month 12; month) { //2023年已经确定从月份开始for (int day 1; day daysInMonth[month]; day) {//每个月的天数int dateSeq[8] {2, 0, 2, 3, month / 10, month % 10, day / 10, day % 10};//用数组保存长度为8的日期int k 0; for (int i 0; i 100; i) {//i 100 代表要开始遍历数组了(arr数组)if (array[i] dateSeq[k]) {k;if (k 8) {ans;break;}}}}}cout ans; //把结果输出return 0;
}