C++ countDivisors() 구현

Jmnote (토론 | 기여)님의 2023년 11월 25일 (토) 10:33 판 (새 문서: ==개요== ;C++ countDivisors() 구현 <syntaxhighlight lang='cpp' run> #include <iostream> #include <cmath> using namespace std; int countDivisors(int n) { int cnt = 0; for...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

C++ countDivisors() 구현
#include <iostream>
#include <cmath>
using namespace std;

int countDivisors(int n) {
    int cnt = 0;
    for (int i = 1; i <= sqrt(n); i++) {
        if (n % i == 0) {
            if (n / i == i) cnt++;
            else cnt = cnt + 2;
        }
    }
    return cnt;
}

int main() {
    cout << countDivisors(6) << endl; // 4
    cout << countDivisors(7) << endl; // 2
    cout << countDivisors(100) << endl; // 9
}

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}