1. 26.
    0
    yaptım beyler

    3. include<stdio.h>
    4. include<stdlib.h>
    int main()
    {int a[3][3],i,j,sum=0;
    printf("please give the arrayn ");
    for(i=0;i<3;i++)
    for(j=0;j<3;j++)
    scanf("%d",&a[i][j]);
    for(i=0;i<3;i++){
    sum=sum+a[i][2-i];}
    printf("sum= %d",sum);
    system("pause");
    return 0;
    }
    ···
   tümünü göster