?? sy1_5.java
字號:
package shiyan1;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2008</p> * <p>Company: </p> * @author not attributable * @version 1.0 */import java.io.*;public class sy1_5 { public static void main(String[] args)throws IOException { int[] array = new int[10]; System.out.println("Please enter 10 numbers:"); for(int i = 0;i < array.length;i++) { BufferedReader stdin=new BufferedReader(new InputStreamReader(System.in)); array[i] = Integer.parseInt(stdin.readLine()); } for(int i = 0;i < array.length;i++) System.out.print(array[i]); }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -