C++ pow()

1 개요[ | ]

C++ pow()
#include <iostream>
#include <cmath>
using namespace std;

int main() {
    cout << pow(2, -3) << endl; // 0.125
    cout << pow(2, 10) << endl; // 1024
}

2 같이 보기[ | ]

3 참고[ | ]

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