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

📄 season.java

📁 java实验报告书:其中包括实验代码以及说明等
💻 JAVA
字号:
import user.*;
class Season
{
	public static void main(String[] args){
		System.out.print("请键入月份(1_12):");
		int month=ReadNumber.readInteger();
		if((month>12)||(month<1)) System.out.println("输入错误!");
		else if(month<3||month==12)System.out.println("冬天");
					else if(month<6)System.out.println("春天");
								else if(month<9)System.out.println("夏天");
											else System.out.println("秋天");														
		}
}

⌨️ 快捷键说明

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