wow


SUBMITTED BY: Guest

DATE: Jan. 30, 2013, 1:06 a.m.

FORMAT: Java

SIZE: 374 Bytes

HITS: 1175

  1. import java.io.File;
  2. import java.io.PrintWriter;
  3. public class wow {
  4. public static void main (String[] args)throws Exception{
  5. for (int i = 1; i > 0; i++){
  6. File wow = new File("C:/Users/Patrick/Desktop/wow" + i + ".txt");
  7. PrintWriter wowOutput = new PrintWriter(wow);
  8. wowOutput.print("hi");
  9. wowOutput.close();
  10. }
  11. }
  12. }

comments powered by Disqus