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!