Module: (자바) 서브루틴: 프로시저 및 함수 - 2


Problem

4/11

숫자의 제수의 수

Problem

자연수의 약수를 반환하는 함수를 작성하세요
<헤드> <일># <몸>
입력 출력
1 6 4
Write the program below
public static void main(String[] args) {
   Scanner in = new Scanner(System.in);
   int n;
   n = in.nextInt();
   System.out.println(numberOfDivisors(n));
  }  
} 

     

Program check result

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