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.
23 lines
388 B
23 lines
388 B
package correct |
|
|
|
import "fmt" |
|
|
|
func PrintNbrBase(n int, base string) { |
|
if validBase(base) { |
|
length := len(base) |
|
sign := 1 |
|
rbase := []rune(base) |
|
if n < 0 { |
|
fmt.Print("-") |
|
sign = -1 |
|
} |
|
if n < length && n >= 0 { |
|
fmt.Printf("%c", rbase[n]) |
|
} else { |
|
PrintNbrBase(sign*(n/length), base) |
|
fmt.Printf("%c", rbase[sign*(n%length)]) |
|
} |
|
} else { |
|
fmt.Print("NV") |
|
} |
|
}
|
|
|