👩💻 Join our community of thousands of amazing developers!
diff --git a/reference/cmath/remquo.md b/reference/cmath/remquo.md index d7b448b3c..1dd97d8b8 100644 --- a/reference/cmath/remquo.md +++ b/reference/cmath/remquo.md @@ -6,14 +6,50 @@ ```cpp namespace std { - double remquo(double x, double y, int* quo); - float remquo(float x, float y, int* quo); - long double remquo(long double x, long double y, int* quo); + float + remquo(float x, + float y, + int* quo); // (1) C++11からC++20まで + double + remquo(doub...