
C++ - Vectorの平均値と中央値を求める - Qiita
DRANK
平均値の求め方 合計して要素の数で割る ```c++:mean.cpp float mean(vector<float> v) { int size = v.size(); float sum = 0; fo...
平均値の求め方 合計して要素の数で割る ```c++:mean.cpp float mean(vector<float> v) { int size = v.size(); float sum = 0; fo...