Skip to content
This repository was archived by the owner on Feb 29, 2024. It is now read-only.
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Add files via upload
  • Loading branch information
javaarchive authored Aug 5, 2018
commit ef39eda738c50408d795374ab4bdd866b64905d2
7 changes: 6 additions & 1 deletion usacotools.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@

/*
* USACOTOOLS-Official version
* This is the official version.
*
*/
import java.util.*;
import java.io.*;
public abstract class usacotools {
Expand Down Expand Up @@ -105,6 +109,7 @@ public static String changen(int position, char ch, String str){
return new String(charArray);
}
public static BufferedReader mreader(String filen) throws IOException {
//Make a reader
return new BufferedReader(new FileReader(filen));
}
public static PrintWriter mwriter(String filen) throws IOException {
Expand Down