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

📄 myinput.java

📁 一个java写的日历程序
💻 JAVA
字号:

import java.io.*;

public class MyInput 
{
	//read a string from thekeyboard
	public static String readString()
	{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in),1);
		
		//Declare and initialize the string
		String string = " ";
		
		//Get the string from the keyboard
		try
		{
			string =br.readLine();
		}
		catch(IOException ex)
		{
			System.out.println(ex);
		}
		
		//Return the string obtained from the keyboard
		return string;
	}
	
	//Read an int value from the keyboard
	public static int readInt()
	{
		return Integer.parseInt(readString());
	}
	
    //Read a double value from the keyboard
	public static double readDouble()
	{
		return Double.parseDouble(readString());
	}
}

⌨️ 快捷键说明

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