2 Commits

Author SHA1 Message Date
e6ba434796 Fixed an infinite empty print bug. 2024-02-27 18:30:37 +02:00
dbe283a3d6 README.md updated with releases. 2024-01-21 13:58:52 +02:00
2 changed files with 13 additions and 5 deletions

View File

@@ -7,14 +7,18 @@ This is a Python language prototype for a binary calculator to be used in Comput
The user must have installed:
- python 3 (for the calculator itself);
- git (to clone the repository for installation);
## Installation
To install the calculator just clone the repository locally:
### Cloning the repository
To install the experimental version of the calculator just clone the repository locally:
```
git clone -b master http://139.162.162.130:3000/Rhinemann/binaryCalculatorPrototype.git
```
### Stable packages
To install a stable release of the calculator download the archive from [releases](http://139.162.162.130:3000/Rhinemann/binaryCalculatorPrototype/releases) page and decompress it in a directory of your choice.
## User instructions
Start the calculator using the following command:
```
@@ -262,14 +266,18 @@ So that multiple operations are performed on the same operands without the need
Користувач мусить мати:
- python 3 (для роботи калькулятора);
- git (щоб встановити калькулятор);
## Завантаження
Щоб встановити калькулятор пропишіть цю команду:
### Клонування репозиторію
Щоб встановити експериментальну версію калькулятора пропишіть цю команду, щоб клонувати репозиторій:
```
git clone -b master http://139.162.162.130:3000/Rhinemann/binaryCalculatorPrototype.git
```
### Стабільні версії
Щоб встановити стабільний реліз калькулятора завантажте архів зі сторінки [релізів](http://139.162.162.130:3000/Rhinemann/binaryCalculatorPrototype/releases) та розархівуйте в обраній директорії.
## Інструкція користувачам
Калькулятор запускається цією командою:
```

View File

@@ -93,7 +93,7 @@ def input_handler(first_register: bu.BasicRegister, second_register: bu.BasicReg
while True:
prompt_text: str = get_prompt_text(operation, method).format(first_register, second_register, operation, method)
print()
# print()
if operation == "":
raw_user_input = input("Choose the operation:\n"
"[a]ddition, [s]ubtraction, [m]ultiplication, [d]ivision, [q]uit\n" +