Module: 서브루틴. 재귀


Problem

9/12

P 수 체계의 수(P < 10)

Problem

숫자를 기본 2에서 9까지 변환하는 재귀 절차를 작성합니다.   
입력 데이터: 프로그램에 대한 입력은 숫자 N(N < 1024) - 십진수 체계의 숫자와 숫자 P입니다. > (2에서 9까지) (숫자 NP는 서로 다른 줄에 입력됩니다. 먼저 N을 입력한 다음 P >).
출력 데이터: 하나의 숫자 표시 - 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!