practice_geomethicMeandian/cpp_impl/src/geometric_mean.hpp
2021-05-01 22:31:59 +09:00

7 lines
106 B
C++

#ifndef GEOMETRIC_MEAN_HPP
#define GEOMETRIC_MEAN_HPP
double geometric_mean(double a, double b);
#endif