#include <cmath> int main(){ int test = pow(10, 2) //test = 100 return 0; }
cmath를 include 해주고 pow 함수를 사용하면 된다.
pow(밑, 지수)로 사용할 수 있다.