mirror of https://github.com/01-edu/public.git
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.
18 lines
290 B
18 lines
290 B
6 years ago
|
# printbits
|
||
|
## Instructions
|
||
|
|
||
|
Write a function that takes a byte, and prints it in binary WITHOUT A NEWLINE
|
||
|
AT THE END.
|
||
|
|
||
|
The function must have the next signature.
|
||
|
|
||
|
## Expected function
|
||
|
|
||
|
```go
|
||
|
|
||
|
func PrintBits(octe byte) {
|
||
|
|
||
|
}
|
||
|
|
||
|
```
|
||
|
Example, if you pass 2 to PrintBits, it will print "00000010"
|