by admin | Mar 15, 2016 | Computer Science, Java, Program Code, Programming
EncryptionDecryption import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Scanner; /** * Class represents encrypt. */ public class Encrypt { private static final Scanner SCANNER = new Scanner(System.in);...
by admin | Apr 1, 2010 | C / C#, Computer Science, Program Code, Programming
The Multiplayer Game of tic-tac-toe Abstract: The game is built over a 3X3 matrix which is used by two players use it alternatively. The two players alternate between ‘X’ and ‘O’ symbols. The game works on a few rules the first player to cross the following boxes win....