section1.1.3 friday

其实第三道题还是蛮简单的,思考一下就可知,这道题用循环就可以解了,只是需要注意闰月的情况。代码如下:

#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
bool judge(int y){
	return ((y%100 !=0)&&(y%4 == 0))||(y%400==0);
}
int main (){
	int n=0,year=0,month=0,day=5;
	int ans[7];
	memset(ans,0,sizeof(ans));
	int i=0,j=0,t=0,k=0;
	cin>>n;
	ans[day]++;
	for (i=0;i<n;i++){
		year=1900+i;
		for (j=1;j<=12;j++){
			if ((i==0)&&(j==1)){	//1900.1.13
				continue;
			}
			else {
				k = (j!=1) ? j-1 : 12;
				if ((k==4)||(k==6)||(k==9)||(k==11)){
					t=30%7;
				}
				else if (k==2){
					t = judge(year) ? 29%7 : 28%7;
				}
				else {
					t=31%7;
				}
				day=(day+t)%7;
				ans[day]++;
			}
		}
	}
	cout<<ans[5]<<" "<<ans[6]<<" "<<ans[0]<<" "<<ans[1]<<" "<<ans[2]<<" "<<ans[3]<<" "<<ans[4]<<" "<<endl;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值