📄 greetings.java
字号:
import java.io.*;
class Greetings {
/* A simple greetings program by J M Bishop Oct 1996
* -------------------------- Java 1.1 Dec 1997
* updated May 2000
*/
Greetings () throws IOException {
BufferedReader in = new BufferedReader
(new InputStreamReader(System.in));
System.out.print("What is your name? ");
String name = in.readLine();
System.out.println("Bonjour " + name);
}
public static void main (String args []) throws IOException {
new Greetings();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -