summaryrefslogtreecommitdiff
path: root/I_anno
diff options
context:
space:
mode:
authorSanto Cariotti <dcariotti24@gmail.com>2020-01-18 20:07:02 +0100
committerSanto Cariotti <dcariotti24@gmail.com>2020-01-18 20:07:02 +0100
commit426f21257527932d6e17f48950925fee1da03912 (patch)
tree6797d3ad4bf4638c01f05ea5f547a3d9c28a5c9f /I_anno
parenta22aab814f0cd9d0a59d2e9534036be5aef71fcd (diff)
1 10/7/18
Scrivere un metodo che prenda come parametri formali una matrice quadrata A n×n di puntatori a char e restituisca in output un bool che indichi se esiste una colonna in A identica alla diagonale principale di A.Y
Diffstat (limited to 'I_anno')
-rw-r--r--I_anno/Programmazione_1/ex10_07_18.cc45
1 files changed, 45 insertions, 0 deletions
diff --git a/I_anno/Programmazione_1/ex10_07_18.cc b/I_anno/Programmazione_1/ex10_07_18.cc
new file mode 100644
index 0000000..092b184
--- /dev/null
+++ b/I_anno/Programmazione_1/ex10_07_18.cc
@@ -0,0 +1,45 @@
+#include<iostream>
+#include<vector>
+
+#define n 3
+
+using namespace std;
+
+bool func(char (*A)[n]) {
+ bool check{false};
+ char str[n];
+
+ for(int i = 0; i < n; ++i) {
+ str[i] = A[i][i];
+ }
+
+ short n_check{0};
+ for(int i = 0; i < n; ++i) {
+ short index{0};
+ for(int j = 0; j < n; ++j) {
+ if(A[j][i] != str[index++]) {
+ break;
+ }
+ ++n_check;
+ }
+ if(n_check == n) {
+ check = true;
+ break;
+ }
+ }
+
+ return check;
+}
+
+
+int main() {
+ char A[3][3] = {
+ {'a', 'b', 'c'},
+ {'b', 'b', 'c'},
+ {'c', 'b', 'c'},
+ };
+
+ cout << func(&A[0]);
+
+ return 0;
+}