Vorkus-Programmieren-2023/calculator/README.md

11 lines
267 B
Markdown
Raw Permalink Normal View History

2023-09-13 08:27:03 +00:00
# Simple calculator application
This application asks the user to enter an operator and to two operands. Example:
```
> Enter operator: +
> Enter operand 1: 67
> Enter operand 2: 8
```
It then preceeds to print the result of the calculation:
```
The Result is: 75
```