Module: サブルーチン。再帰


Problem

9/12

P 番号体系の番号 (P < 10)

Problem

数値を 2 から 9 までの任意の基数に変換する再帰的な手順を記述します。   
入力データ: プログラムへの入力は数値 N (N < 1024) - 10 進数システムの数値と数値 P (2 から 9 まで) (数字 NP は別の行に入力されます: 最初に N、次に P >).
出力データ: 数字を 1 つ表示 - P 進法の数字。

例:
<本体>

入力 インプリント
75
6
203
1
using System;  
2
class Program  
3
{  
4
    static void convertToPSystem(int n, int p)  
5
    {  
6
7
8
9
10
11
12
13
14
    }  
15
    static void Main()  
16
    {  
17
        int n = Convert.ToInt32(Console.ReadLine());  
18
        int p = Convert.ToInt32(Console.ReadLine());  
19
        convertToPSystem(n, p);  
20
    }  
21
}  

     

Program check result

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