Module: サブルーチン: プロシージャと関数 - 2


Problem

4/10

数値の約数の数

Problem

自然数の約数を返す関数を
書きましょう。 <頭> <本体>
# 入力 出力
1 6 4
Write the program below
begin
    read(n);
    writeln(numberOfDivisors(n));
end. 

     

Program check result

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