From a11df2c963520c64768158c2753237152a1eae3d Mon Sep 17 00:00:00 2001 From: Franciszek Malinka Date: Sat, 17 Apr 2021 17:31:46 +0200 Subject: Update --- Semestr 4/ask/lista6/puzzle8.c | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Semestr 4/ask/lista6/puzzle8.c (limited to 'Semestr 4/ask/lista6/puzzle8.c') diff --git a/Semestr 4/ask/lista6/puzzle8.c b/Semestr 4/ask/lista6/puzzle8.c new file mode 100644 index 0000000..4d65f9d --- /dev/null +++ b/Semestr 4/ask/lista6/puzzle8.c @@ -0,0 +1,25 @@ +#include + +struct T { + long min; + long max; + long mean; +}; + +struct T puzzle8(long *a, long n); + +struct T decode(long *a, long n) { + long maks = LONG_MIN; + long mini = LONG_MAX; + long sum = 0; + for (int i = 0; i < n; i++) { + if (maks < a[i]) maks = a[i]; + if (mini > a[i]) mini = a[i]; + sum += a[i]; + } + struct T ret; + ret.min = mini; + ret.max = maks; + ret.mean = sum / n; + return ret; +} \ No newline at end of file -- cgit v1.2.3