Solutions

This commit is contained in:
Markus Schmidt 2025-10-21 19:36:38 +02:00
commit d3aa42a3e0
64 changed files with 2726 additions and 0 deletions

9
sheet1/B/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