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.

31 lines
788 B

5 years ago
## gcd
### Instructions
5 years ago
Write a program that takes two `string` representing two strictly positive integers that fit in an `int`.
5 years ago
The program displays their greatest common divisor followed by a newline (`'\n'`).
If the number of parameters is different from 2, the program displays a newline.
All arguments tested will be positive `int` values.
### Usage
```console
5 years ago
student@ubuntu:~/piscine-go/gcd$ go build
student@ubuntu:~/piscine-go/gcd$ ./gcd 42 10 | cat -e
2$
5 years ago
student@ubuntu:~/piscine-go/gcd$ ./gcd 42 12 | cat -e
6$
5 years ago
student@ubuntu:~/piscine-go/gcd$ ./gcd 14 77 | cat -e
7$
5 years ago
student@ubuntu:~/piscine-go/gcd$ ./gcd 17 3 | cat -e
1$
5 years ago
student@ubuntu:~/piscine-go/gcd$ ./gcd | cat -e
$
5 years ago
student@ubuntu:~/piscine-go/gcd$ ./gcd 50 12 4 | cat -e
$
5 years ago
student@ubuntu:~/piscine-go/gcd$
```