summaryrefslogtreecommitdiff
path: root/1_anno/Programmazione_1/ex01.cc
diff options
context:
space:
mode:
Diffstat (limited to '1_anno/Programmazione_1/ex01.cc')
-rw-r--r--1_anno/Programmazione_1/ex01.cc42
1 files changed, 0 insertions, 42 deletions
diff --git a/1_anno/Programmazione_1/ex01.cc b/1_anno/Programmazione_1/ex01.cc
deleted file mode 100644
index 9183dec..0000000
--- a/1_anno/Programmazione_1/ex01.cc
+++ /dev/null
@@ -1,42 +0,0 @@
-#include <iostream>
-#include <algorithm>
-#include <vector>
-#define K 2
-#define N 3
-
-using namespace std;
-
-template<int KK, int NN>
-bool func(int (&a)[KK][NN][NN], int w) {
- vector<int> list;
- for(int i = 0; i < KK; ++i) {
- list.clear();
- for(int j = 0; j < NN; ++j)
- list.push_back(a[i][j][j]);
-
- auto mm = minmax_element(begin(list), end(list));
- float media = (static_cast<float>(*mm.first)+static_cast<float>(*mm.second))/2;
- if(media <= w)
- return true;
- }
-
- return false;
-}
-
-int main() {
- int a[K][N][N] = {
- {
- {1, 2, 30},
- {1, 80, 3},
- {1, 2, 3},
- },
- {
- {1, 2, 30},
- {1, 20, 3},
- {1, 2, 3},
- }};
-
- cout << func(a, 5);
-
- return 0;
-}