Skip to content

KarUrals/java-educational-project-1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Brain Games

This project is a set of five console games:

  1. Even game - Definition of an even number
  2. Calc game - Arithmetic expressions to be evaluated
  3. GCD game - Finding the Greatest Common Divisor
  4. Progression game - Search for missing number in a sequence of numbers
  5. Prime game - Definition of a prime number

Each game asks questions that need to be answered correctly. After three correct answers, the game is considered to be completed. Wrong answers end the game.


Service badges

Description Badge
Hexlet tests and linter status: Actions Status
CodeClimate maintainability status:

Game launch examples

Even game (Asciinema Link):

Even GIF

Calc game (Asciinema Link):

Calc GIF

GCD game (Asciinema Link):

GCD GIF

Progression game (Asciinema Link):

Progression GIF

Prime game (Asciinema Link):

Prime GIF


Frequently used commands

Install

make install

Run

make run-dist

Build

make build

Run checkstyle

make lint

Check for Dependency Updates

make check-updates