import java.io.*;
public class tax0924{
public static void main(String args[]){
try{
PrintWriter pw = new PrintWriter
(new BufferedWriter(new FileWriter("test.txt")));
pw.print("Dew");
pw.close();
}catch(IOException e){
System.out.println(e);
}
}
}
最終更新:2010年09月12日 09:09