[c09aa8]: / clusters / scripts / plateletrandomchangeto.java

Download this file

12 lines (10 with data), 319 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
import java.util.*;
import java.io.*;
public class plateletrandomchangeto {
public static void main(String[] args) throws Exception {
Scanner in = new Scanner(new File("plateletbeforechangeto.csv"));
PrintWriter out = new PrintWriter(new File("plateletrandomizedchangeto.csv"));
in.close();
out.close();
}
}