Skip to content

Instantly share code, notes, and snippets.

View an-Aetheria's full-sized avatar

Aetheria an-Aetheria

  • 19:39 (UTC +05:30)
View GitHub Profile
@an-Aetheria
an-Aetheria / TicTacToe.java
Last active April 22, 2026 09:53
Tic Tac Toe game made in java
import java.util.*;
class TicTacToe {
int pos[] = new int[10];
Scanner sc = new Scanner(System.in);
public void intro() {
System.out.println("Welcome to Tic Tac Toe!");
System.out.println("Player -> X, Bot -> O");