摘要:
从控制台读取字符串 从标准输入读取一个字符串需要使用 BufferedReader 的 readLine() 方法。 它的一般格式是: String readLine( ) throws IOException //使用 BufferedReader 在控制台读取字符 import java.io. 阅读全文
摘要:
import java.io.*; //演示 System.out.write(). public class WriteDemo { public static void main(String[] args) { int b; b = 'A'; System.out.write(b); Syst 阅读全文