프로그래머스(Level 0) - 📊 순서쌍의 개수

Gammi·2023년 2월 4일
0

프로그래머스

목록 보기
35/69

✔ 문제






✔ 해결


class Solution {
  public int solution(int n) {
    for(int i = 1; i <= n; i++) {
      if(n % i == 0) {
        answer++;
      }
    }
    return answer;
  }
}
profile
개발자가 되었어요⭐️

0개의 댓글