All pastes #2052235 Raw Edit

Untitled

public c v1 · immutable
#2052235 ·published 2011-04-30 12:31 UTC
rendered paste body
#include <stdio.h>#include <stdlib.h>int main() {        int notlar[5][3] = {    {12,63,94},        {67,21,78},        {90,42,76},        {54,12,65},        {100,70,87},  };    int j,i;    int ort=0;    int max=0;    int kol=0;        for(j=0; j<3; j++)    {        for(i=0; i<5; i++)        {            ort += notlar[j][i];        }        if(ort/5<max)        {            max = ort/5;        }        ort=0;    }    printf("%d. kolon %d ortalama");}