Module: (Python) サブルーチン。再帰


Problem

9/12

Pナンバーシステムの数 (P<10)

Problem

数値を 2 から 9 までの任意の基数に変換する 再帰プロシージャ を作成します。   

入力
プログラムへの入力は自然数 N (N <= 1024) - 10 数体系の数と数 P ( 2 <= P <= 9)。 NP の数字は、同じ行にスペースで区切って入力します。

インプリント
P-ary number system の数字を画面に 1 つ出力します。
 
<頭> <本体>

# 入力 出力
1 75 6 203
Write the program below
N, P = map(int, input().split())
printNtoP(N, P)     

     

Program check result

To check the solution of the problem, you need to register or log in!