⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 date.java

📁 学生成绩表
💻 JAVA
字号:
class Date
{
	int year,month,day;
	Date(int year,int month,int day)
	{
		this.year=year;
		this.month=(month-1)%12+1;
		switch(this.month)
		{
			case 1:
			case 3:
			case 5:
			case 7:
			case 8:
			case 10:
			case 12:this.day=(day-1)%31+1;break;
			case 4:
			case 6:
			case 9:
			case 11:this.day=(day-1)%30+1;break;
			default:
			if(((year%4==0)&&(year%100!=0))||(year%400==0))
			{this.day=(day-1)%29+1;}
			else{this.day=(day-1)%28+1;}
		}
	}
	public String toString()
	{return year+"-"+month+"-"+day;}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -