C++ 문법
[C++] pow() 함수
simstealer
2022. 7. 2. 15:51
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
cout << "10의 2승은? " << pow(10, 2);
}