题解
2024-07-15 12:17:23
发布于:上海
0阅读
0回复
0点赞
#include<iostream>
using namespace std;
int n;
int cnt;
int d[13] = {0 , 31 , 28 , 31 , 30 , 31 , 30 , 31 , 31 , 30 , 31 , 30 , 31};
void scan ()
{
cin >> n;
}
bool check ()
{
return (12 + n + cnt) % 7 == 5;
}
void print (int n)
{
cout << n << endl;
}
void CntPlus (int i)
{
cnt += d[i];
}
int main(){
scan ();
for(int i=1;i<=12;i++){
if(check ()) print (i);
CntPlus(i);
}
return 0;
}
这里空空如也
有帮助,赞一个