蓝桥杯Java研究生组-十一届真题

本文聚焦于十一届蓝桥杯Java研究生组比赛,详细解析了当年的竞赛题目,涵盖了重要的编程知识点和技术难点,对于准备参加该赛事的研究生来说是一份宝贵的复习资料。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

十一届蓝桥杯Java研究生组
在这里插入图片描述

public class Main {
   
   
	public static void main(String[] args){
   
   
		int count =0;
		for(int i=1;i<=78120;i++) {
   
   	
			if(78120%i==0) {
   
   
				count++;
			}
		}
		System.out.println(count);
 }
}//96

在这里插入图片描述

public class Main{
   
   
	public static void main(String []args) {
   
   
		int []month=new int[13];
		month[1]=month[3]=month[5]=month[7]=month[8]=month[10]=month[12]=31;
		month[4]=month[6]=month[9]=month[11]=30;
		int res1=0;
		int res2=0;
		int week=5;
		
		loop:
		for(int i=2000;i<=2020;i++) {
   
   //年
			month[2]=i%400==0||(i%4==0&&i%100!=0)?29:28;//2月的天数
			int mon=(i==2020)?10:12;
			for(int j=1;j<=mon;j++) {
   
   //月
				for(int k=1;k<=month[j];k++) {
   
   //天
					if(i==2020&&j==10&k==1) {
   
   
						res1++;
						res2++;
						break loop;
					}
					res1++;
					week=(week+1)%7;
					if(k==1||week==1) {
   
   
						res2++;
					}
				}
			}
		}
		System.out.println(res1+res2);
	}
}//8879

在这里插入图片描述

//
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值