mirror of
https://github.com/Xevion/contest.git
synced 2026-01-31 22:23:49 -06:00
18 lines
407 B
Java
18 lines
407 B
Java
//© A+ Computer Science - www.apluscompsci.com
|
|
//Name - Ryan Walters
|
|
//Date - November 12th, 2020
|
|
//Class - Computer Science II Honors
|
|
//Lab - Labs 09c
|
|
|
|
import java.io.File;
|
|
import java.io.IOException;
|
|
import java.util.Scanner;
|
|
import static java.lang.System.*;
|
|
|
|
public class Lab09c
|
|
{
|
|
public static void main( String args[] ) throws IOException
|
|
{
|
|
Scanner input = new Scanner("./src/lab09c.dat");
|
|
}
|
|
} |