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.

26 lines
713 B

## printhex
### Instructions
5 years ago
Write a program that takes a positive (or zero) number expressed in base 10, and displays it in base 16 (with lowercase letters) followed by a newline (`'\n'`).
5 years ago
- If the number of parameters is different from 1, the program displays a newline.
- Error cases have to be handled as shown in the example below.
### Usage
```console
student@ubuntu:~/piscine-go/test$ go build
student@ubuntu:~/piscine-go/test$ ./test "10"
a
student@ubuntu:~/piscine-go/test$ ./test "255"
ff
student@ubuntu:~/piscine-go/test$ ./test "5156454"
4eae66
student@ubuntu:~/piscine-go/test$ ./test
student@ubuntu:~/piscine-go/test$ ./test "123 132 1" | cat -e
0$
student@ubuntu:~/piscine-go/test$
5 years ago
```