From 6c6328375c55683645146909b7ab760d0de0d463 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_25_06_19.cc | 45 --------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 I_anno/Programmazione_1/ex1_25_06_19.cc (limited to 'I_anno/Programmazione_1/ex1_25_06_19.cc') diff --git a/I_anno/Programmazione_1/ex1_25_06_19.cc b/I_anno/Programmazione_1/ex1_25_06_19.cc deleted file mode 100644 index f28a09b..0000000 --- a/I_anno/Programmazione_1/ex1_25_06_19.cc +++ /dev/null @@ -1,45 +0,0 @@ -#include -#include -#include - -using namespace std; - -template -bool func(int (&A)[N][M], short k, double x) { - for(int i = 0; i < M; ++i) { - vector > v; - - for(int j = 0; j < N-1; ++j) { - v.push_back({A[j][i], A[j+1][i]}); - } - - int check_num = 0; - - for(auto const& i : v) { - if(i.second == 0) continue; - double elem = static_cast(i.first) / static_cast(i.second); - - if(elem < x) - check_num++; - } - - if(check_num == k) - return true; - } - - - return false; -} - -int main() { - int A[4][3] = { - {2, 3, 5}, - {10, 20, 10}, - {90, 19, 69}, - {10, 0, 0}, - }; - - cout << func(A, 2, 0.005) << endl; // 0 - cout << func(A, 2, 1.0) << endl; // 1 - return 0; -} -- cgit v1.2.3-18-g5258