Last active
October 11, 2018 20:53
-
-
Save rknightly/7f111de4bfc3925115a9d6a39ac0c976 to your computer and use it in GitHub Desktop.
UIL Solution Template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.File; | |
import java.io.FileNotFoundException; | |
import java.util.Scanner; | |
import static java.lang.System.out; // allow use of out.println() without System | |
public class ProblemName { | |
// CHANGE FILE NAME FOR EACH PROBLEM! | |
private static final String inputFileName = "filename00.dat"; | |
private static Scanner scan; | |
public static void main(String[] args) { | |
try { | |
// Set up scanner to get input from file | |
scan = new Scanner(new File(inputFileName)); | |
// Read the number of test cases from first line | |
int numCases = scan.nextInt(); | |
// Read any other input variables at top of input file here | |
// Move to next line for test cases | |
scan.nextLine(); | |
// Loop through each test case | |
for(int caseNum=0; caseNum<numCases; caseNum++) { | |
handleTestCase(); | |
} | |
scan.close(); | |
} catch (FileNotFoundException exception) { | |
exception.printStackTrace(); | |
} | |
} | |
public static void handleTestCase() { | |
// Write solution for a single test case below | |
String inputLine = scan.nextLine(); // replace with custom input reading | |
out.println(inputLine); // replace with custom input processing and output | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment