?? iodemo5.java
字號:
import java.io.*;
public class IODemo5{
public static void main(String ag[]){
int i;
byte[]s=new byte[100];
try{
DataInputStream in=new DataInputStream(System.in);
i=0;
System.out.println("please input and press enter when finished");
in.read(s);
System.out.println();
System.out.println("begin to print input");
while(s[i]!=0){
System.out.print((char)(s[i]));
i++;
}
System.out.println("TOTAL="+i);
in.close();
}catch(Exception e){}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -