Module: 서브루틴: 절차 및 기능 - 1


Problem

10/11

숫자의 모든 약수

Problem

N 의 모든 약수를 한 줄에 인쇄하는 프로시저를 작성합니다. 공백으로 구분됩니다.
예.
<몸>
입력 출력
10 1 2 5 10
1
using System;  
2
class Program {  
3
    static void printDivisors(int n) {  
4
5
6
7
8
9
10
11
    }  
12
    static void Main() {  
13
        int n = Convert.ToInt32(Console.ReadLine());  
14
        printDivisors(n);  
15
    }  
16
}  
17


                                                   

     

Program check result

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