You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.1 KiB

## doop
### Instructions
5 years ago
Write a program that is called `doop`.
The program has to be used with three arguments:
- A value
4 years ago
- An operator, one of : `+`, `-`, `/`, `*`, `%`
- Another value
4 years ago
In case of an invalid operator, value, number of arguments or an overflow the programs prints nothing.
The program has to handle the modulo and division operations by 0 as shown on the output examples below.
### Usage
```console
student@ubuntu:~/[[ROOT]]/test$ go build doop.go
student@ubuntu:~/[[ROOT]]/test$ ./doop
student@ubuntu:~/[[ROOT]]/test$ ./doop 1 + 1 | cat -e
2$
4 years ago
student@ubuntu:~/[[ROOT]]/test$ ./doop hello + 1
student@ubuntu:~/[[ROOT]]/test$ ./doop 1 p 1
student@ubuntu:~/[[ROOT]]/test$ ./doop 1 / 0 | cat -e
No division by 0$
student@ubuntu:~/[[ROOT]]/test$ ./doop 1 % 0 | cat -e
5 years ago
No modulo by 0$
student@ubuntu:~/[[ROOT]]/test$ ./doop 9223372036854775807 + 1
0
student@ubuntu:~/[[ROOT]]/test$ ./doop -9223372036854775809 - 3
0
student@ubuntu:~/[[ROOT]]/test$ ./doop 9223372036854775807 "*" 3
0
student@ubuntu:~/[[ROOT]]/test$ ./doop 1 "*" 1
1
student@ubuntu:~/[[ROOT]]/test$ ./doop 1 "*" -1
-1
student@ubuntu:~/[[ROOT]]/test$
```