Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
toridnc committed Feb 1, 2024
1 parent b899484 commit aff407d
Showing 1 changed file with 31 additions and 7 deletions.
38 changes: 31 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,30 @@
# Brain Games Project

##### Hexlet tests and linter status:
[![Actions Status](https://github.com/toridnc/php-project-lvl1/workflows/hexlet-check/badge.svg)](https://github.com/toridnc/php-project-lvl1/actions) [![Maintainability](https://api.codeclimate.com/v1/badges/a99a88d28ad37a79dbf6/maintainability)](https://codeclimate.com/github/codeclimate/codeclimate/maintainability) [![Run linter](https://github.com/toridnc/php-project-lvl1/actions/workflows/run-linter.yml/badge.svg)](https://github.com/toridnc/php-project-lvl1/actions)

# Игры разума

«Игры разума» — набор из пяти консольных игр, построенных по принципу популярных мобильных приложений для прокачки мозга. Каждая игра задает вопросы, на которые нужно дать правильные ответы. После трех правильных ответов считается, что игра пройдена. Неправильные ответы завершают игру и предлагают пройти ее заново.

Игры:
* "Проверка чётности"
* "Калькулятор"
* "Наибольший общий делитель"
* "Арифметическая прогрессия"
* "Простое число"

# Brain Games Project

Mind Games is a set of five console games based on the principle of popular mobile brain—boosting applications. Each game asks questions that need to be answered correctly. After three correct answers, it is considered that the game is over. Incorrect answers end the game and offer to go through it again.

Games:
* "Parity check"
* "Calculator"
* "Greatest common divisor"
* "Arithmetic progression"
* "Prime number"

<br>

## Install
```sh
git clone https://github.com/toridnc/php-project-lvl1.git
Expand All @@ -14,35 +36,37 @@ cd php-project-lvl1
make install
```

## Game: "Parity check"
<br>

## Игра: "Проверка чётности" / Game: "Parity check"
```sh
make brain-even
```

[![asciicast](https://asciinema.org/a/466384.svg)](https://asciinema.org/a/466384)

## Game: "Calculator"
## Игра: "Калькулятор" / Game: "Calculator"
```sh
make brain-calc
```

[![asciicast](https://asciinema.org/a/464797.svg)](https://asciinema.org/a/464797)

## Game: "Greatest common divisor"
## Игра: "Наибольший общий делитель" / Game: "Greatest common divisor"
```sh
make brain-gcd
```

[![asciicast](https://asciinema.org/a/464798.svg)](https://asciinema.org/a/464798)

## Game: "Arithmetic progression"
## Игра: "Арифметическая прогрессия" / Game: "Arithmetic progression"
```sh
make brain-progression
```

[![asciicast](https://asciinema.org/a/464801.svg)](https://asciinema.org/a/464801)

## Game: "Prime number"
## Игра: "Простое число" / Game: "Prime number"
```sh
make brain-prime
```
Expand Down

0 comments on commit aff407d

Please sign in to comment.