摘要:
import java.io.*;public class Demo1 { public static void main(String []args) throws Exception{ File fileOut = new File("Out.txt"); File fileOut2 = new File("In.txt"); BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); // F... 阅读全文