Skip to content

Instantly share code, notes, and snippets.

@gokhanyavas
Created May 16, 2013 07:25
Show Gist options
  • Save gokhanyavas/5589998 to your computer and use it in GitHub Desktop.
Save gokhanyavas/5589998 to your computer and use it in GitHub Desktop.
Dışarıdan girilen NxN boyutlu bir kare matrisin simetrik olup olmadığını bulan c programı.
#include<stdio.h>
#include<conio.h>
int main()
{
int i,j,n;
int yedek,kontrol;
int mat[10][10];
printf("Kare Matrisin Boyutunu Giriniz :");
scanf("%d",&n);
for(i=1;i<=n;i++)
for(j=1;j<=n;j++)
{
printf("%d.satir, %d.sutun elemani : ",i,j);
scanf("%d",&mat[i][j]);
}
kontrol=1;
for(i=2;i<=n;i++)
for(j=1;j<=i-1;j++)
{
if(mat[i][j]!=mat[j][i])
kontrol=0;
}
for(i=1;i<=n;i++)
{
for(j=1;j<=n;j++)
printf("%5d",mat[i][j]);
printf("\n");
}
if(kontrol==1) printf("Matris Simetriktir");
else printf("Matris Simetrik Degildir");
getch();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment