A+ January 2017: Rock, Paper, Scissors & Tic Tac Toe

This commit is contained in:
Xevion
2021-04-15 22:43:36 -05:00
parent 5552125d15
commit f360ff1aa3
2 changed files with 12 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class Tic() {
public static void main() throws FileNotFoundException
{
Scanner in = new Scanner(new File("./tic.dat"));
}
}

View File

@@ -0,0 +1,2 @@
package PACKAGE_NAME;public class Rock {
}