An open API service indexing awesome lists of open source software.

https://github.com/ulasahin/minesweeper

Text-based minesweeper game.
https://github.com/ulasahin/minesweeper

console-application game java oop

Last synced: over 1 year ago
JSON representation

Text-based minesweeper game.

Awesome Lists containing this project

README

          

# MineSweeper Game

This project includes a simple text-based MineSweeper game written in Java.

## How to Run

1. If Java is not installed, download and install it from the [official Java website](https://www.java.com/).
2. Download or clone the project to your computer.
3. Open the command prompt or terminal and navigate to the project directory.
4. Compile the Java files with the command `javac Main.java`.
5. Start the game with the command `java Main`.

## Game Rules

- The game is text-based.
- Customize the game by specifying the number of rows and columns when starting the game.
- Try to uncover all cells without hitting any mines to win.
- Select one cell at a time and check if there is a mine in that cell.
- If you select a cell with a mine, you lose the game.

This is the final project of the "Kodluyoruz & Microsoft Back-End Web Development(Java)" course.