C++ 제곱근 구하기, n승 값 구하는 방법 : sqrt(), pow()
double sqrt (double x);
- 사용하기 위해서는 #include <math.h> 혹은 #include <cmath> 를 해주어야 한다.
- 리턴형은 double 형으로 인수로 준 값의 양의 제곱근을 리턴한다.
double pow (double a, double n);
- 사용하기 위해서는 #include <math.h> 혹은 #include <cmath> 를 해주어야 한다.
- 리턴형은 double으로서 a의 n제곱을 한 값을 리턴한다.
[ 코 드 ]
#include <iostream>
#include <cmath>
using namespace std;
int main() {
int a = 3, n = 4, b = 144;
cout << a << "의 " << n << "승 = " << pow(a, n) << "\n";
cout << b << "의 " << "양의 제곱근 = " << sqrt(b) << "\n";
return 0;
}
[ 결 과 ]
참조
http://www.cplusplus.com/reference/cmath/pow/
'C++ > Algorithm' 카테고리의 다른 글
C++ string 소문자, 대문자 변환 - tolwer, toupper (0) | 2020.04.13 |
---|---|
C++ string to int, int to string 형변환 하기 (0) | 2020.01.31 |
C++ 소수 찾기, 검사하기 [에라토스테네스의 체] (0) | 2020.01.29 |
C++ #include <bits/stdc++.h> 헤더 사용하기 (0) | 2020.01.28 |
C++ 최대공약수/최소공배수 - 유클리드 호제법 (0) | 2020.01.24 |