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.
28 lines
436 B
28 lines
436 B
5 years ago
|
package solutions
|
||
|
|
||
|
import (
|
||
|
"github.com/01-edu/z01"
|
||
|
)
|
||
|
|
||
|
func PrintNbrBase(n int, base string) {
|
||
|
if ValidBase(base) {
|
||
|
length := len(base)
|
||
|
sign := 1
|
||
|
rbase := []rune(base)
|
||
|
if n < 0 {
|
||
|
z01.PrintRune('-')
|
||
|
sign = -1
|
||
|
}
|
||
|
if n < length && n >= 0 {
|
||
|
z01.PrintRune(rbase[n])
|
||
|
} else {
|
||
|
PrintNbrBase(sign*(n/length), base)
|
||
|
z01.PrintRune(rbase[sign*(n%length)])
|
||
|
}
|
||
|
|
||
|
} else {
|
||
|
z01.PrintRune('N')
|
||
|
z01.PrintRune('V')
|
||
|
}
|
||
|
}
|