sheet 5 not tested

This commit is contained in:
Markus Schmidt 2025-12-02 20:28:11 +01:00
commit 64c7aed176
169 changed files with 225337 additions and 0 deletions

9
sheet5/2/means.h Normal file
View file

@ -0,0 +1,9 @@
#ifndef MEANS_H_INCLUDED
#define MEANS_H_INCLUDED
#include <vector>
void means(int a, int b, int c, double &ar, double &ge, double &ha);
void means_vector(const std::vector<short> &input, double &ar, double &ge, double &ha);
#endif // MEANS_H_INCLUDED