diff options
| author | Santo Cariotti <dcariotti24@gmail.com> | 2020-10-18 18:56:43 +0200 | 
|---|---|---|
| committer | Santo Cariotti <dcariotti24@gmail.com> | 2020-10-20 09:08:52 +0200 | 
| commit | f279107065146a4940f5e73602a1c3c09e58b31d (patch) | |
| tree | fd892749637a8b6c5c31ccb80bba04ade76ab87a /I_anno/Programmazione_1/ex1_03_12_19.cc | |
| parent | 4e063e32250312c38d5646840719b62429362b21 (diff) | |
chore: name of first year folder
Diffstat (limited to 'I_anno/Programmazione_1/ex1_03_12_19.cc')
| -rw-r--r-- | I_anno/Programmazione_1/ex1_03_12_19.cc | 65 | 
1 files changed, 0 insertions, 65 deletions
| 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 <iostream> - -using namespace std; -/* -2 3 4 5 -1 2 3 4 -1 2 3 0 - -3 x 4 - -5 2 1 0 -*/ - -template<int N, int M> -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<double>(sum)/static_cast<double>(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; -} | 
