👩💻 Join our community of thousands of amazing developers!
diff --git a/reference/cmath/pow.md b/reference/cmath/pow.md index 2fc052767..786a5d4c7 100644 --- a/reference/cmath/pow.md +++ b/reference/cmath/pow.md @@ -6,22 +6,53 @@ ```cpp namespace std { - float pow(float x, float y); // (1) C++03からC++20まで - double pow(double x, double y); // (2) C++03からC++20まで - long double pow(long double x, long double y); // (3) C++03からC++20まで - - float pow(float x, int y); // (4) C++03まで - double pow(d...