template<typename T> T avg(const T* values, unsigned count) { do { if (count==0) throw std::runtime_error("Division by zero"); return std::valarray<T>(values, count).sum()/count; } while (true); }
Sollte Deinen Einwand ausräumen. -- Gruß, virtual Quote of the Month Ich eß' nur was ein Gesicht hat (Creme 21)