?? app3_13.java
字號(hào):
// app3_13,由鍵盤輸入字符串
import java.io.*; // 載入java.io類庫里的所有類
public class app3_13
{
public static void main(String args[]) throws IOException
{
BufferedReader buf;
String str;
buf=new BufferedReader(new InputStreamReader(System.in));
System.out.print("Input a string:");
str=buf.readLine(); // 將輸入的文字指定給字符串變量str存放
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -