From d2edbc38cac8da52f58c5cd3da6c0c625fa05736 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Sat, 6 Feb 2021 19:56:36 +0100 Subject: conf: rename --- 1_anno/Programmazione_1/ex01.cc | 42 ----------------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 1_anno/Programmazione_1/ex01.cc (limited to '1_anno/Programmazione_1/ex01.cc') 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 -#include -#include -#define K 2 -#define N 3 - -using namespace std; - -template -bool func(int (&a)[KK][NN][NN], int w) { - vector 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(*mm.first)+static_cast(*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; -} -- cgit v1.2.3-18-g5258