/* symmetrikos pinakas */ #include #include using namespace std; int main(int argc, char *argv[]) { int i,j,r,c,N; int symmetric; int breakpoint; cout<<"Dose thn diastash N: "; cin>>N; int A[N][N]; for (i = 0; i < N; i++) { cout<<"Dose "<>A[i][j]; } // elegxos - prwtos tropos // elegxoume kathe stoixeio katw apo thn diagwnio // me to antistoixo symemtriko tou kai stamatame sthn prwth diafora // kai me xrhsh break symmetric=1; breakpoint=0; for (i = 0; i < N; i++) { if (breakpoint) break; for (j = 0; j < i; j++) if (A[i][j]!=A[j][i]) { cout<<"Oxi symetrikos-tropos1. A["<