tasks a-s
This commit is contained in:
parent
47bf37c096
commit
b83f433714
12433 changed files with 156208 additions and 123 deletions
|
|
@ -0,0 +1,11 @@
|
|||
(de printNumber (N Base)
|
||||
(when (>= N Base)
|
||||
(printNumber (/ N Base) Base) )
|
||||
(let C (% N Base)
|
||||
(and (> C 9) (inc 'C 39))
|
||||
(prin (char (+ C `(char "0")))) ) )
|
||||
|
||||
(printNumber 26 16))
|
||||
(prinl)
|
||||
(printNumber 123456789012345678901234567890 36))
|
||||
(prinl)
|
||||
Loading…
Add table
Add a link
Reference in a new issue