结果填空
题目:从2000到2100有多个年2月4日是周六。
解法:结果填空题可以用windows日历和excel。
看2000年2月4日是周几,翻日历看是周五。因为一年365天,365%7=1,是闰年周几往后退2天,不是往后退1天。
bool isleap(int y){
if(y%400==0&&(y%100!=0&&y%4==0)
return true;
else return false;
}
void main(){
int start=2000,end=2100,k=5,cnt=0;
for(int i=start;i<=end;i++){
if(isleap(i))
k+=2;
else k++;
if(k%7==6)cnt++
}
}