From f279107065146a4940f5e73602a1c3c09e58b31d Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Sun, 18 Oct 2020 18:56:43 +0200 Subject: chore: name of first year folder --- I_anno/Programmazione_1/ex1_03_12_19.cc | 65 --------------------------------- 1 file changed, 65 deletions(-) delete mode 100644 I_anno/Programmazione_1/ex1_03_12_19.cc (limited to 'I_anno/Programmazione_1/ex1_03_12_19.cc') diff --git a/I_anno/Programmazione_1/ex1_03_12_19.cc b/I_anno/Programmazione_1/ex1_03_12_19.cc deleted file mode 100644 index 8f9bed7..0000000 --- a/I_anno/Programmazione_1/ex1_03_12_19.cc +++ /dev/null @@ -1,65 +0,0 @@ -#include - -using namespace std; -/* -2 3 4 5 -1 2 3 4 -1 2 3 0 - -3 x 4 - -5 2 1 0 -*/ - -template -bool* func(unsigned int (&K)[N][M], double (&D)[M]) { - bool* A = new bool[M]; - for(int i = 0; i < M; ++i) - A[i] = false; - - for(int i = 0; i < M; ++i) { - int sum = 0; - for(int j = 0; j < N; ++j) { - sum+=K[j][i]; - } - - if(static_cast(sum)/static_cast(M) > D[i]) { - A[i] = true; - } - } - - return A; -} - -int main() { - // TODO: test - unsigned int A[3][4] = { - {2, 3, 4, 5}, - {1, 2, 3, 4}, - {1, 2, 3, 0} - }; - - double D[4] = {5., 2.2, 1.1, 0.50}; - - auto a = func(A, D); - for(int i = 0; i < 4; ++i) - cout << a[i] << ' '; - - cout << endl; - - unsigned int A2[3][4] = { - {2, 3, 4, 5}, - {1, 2, 0, 4}, - {1, 2, 0, 0} - }; - - double D2[4] = {5., 2.2, 15.1, 18.50}; - - auto a2 = func(A2, D2); - for(int i = 0; i < 4; ++i) - cout << a2[i] << ' '; - - cout << endl; - - return 0; -} -- cgit v1.2.3-18-g5258