答案
2024-04-21 16:38:35
发布于:北京
5阅读
0回复
0点赞
#include <iostream>
using namespace std;
int main(){
int n, i = 1, cnt = 0;
cin >> n;
int arr[13] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
for(int i = 1; i <= 12; i++){
if((12 + cnt + n) % 7 == 5){
cout << i << endl;
}
cnt += arr[i];
}
return 0;
}
这里空空如也
有帮助,赞一个