//Cristian Ronzoni 3Ain //Verifica se tutte le celle dei “bordi” contengono lo stesso valore #include #include #include #include #define NUM 4 using namespace std; void stampaMatrice(int matrice[NUM][NUM]) { cout << "Matrice:\n"; for (int i = 0; i < NUM; ++i) { for (int j = 0; j < NUM; ++j) { cout << matrice[i][j] << " "; } cout << endl; } } bool verificaBordiUguali(int arr[NUM][NUM]){ int valoreBordo = arr[0][0]; for(size_t j =0; j