13 Eylül 2013 Cuma

Bir dizinin ortalaması ve toplamını bulan program

Sponsorlu Bağlantılar
#include<stdio.h>
int main()
{
    
 int a[10]={5,66,23,7,90,84,55,48,29,76};   // array initilazation int toplam;
 float ort;
 int i;
 // let us print the sum and the avarage  toplam=0;
 for(i=0;i<10;i++)
 {
 toplam=toplam+a[i];
}
ort=(float)toplam/10;  // in order to get floating number
// one of variables in division operation must act as if float
printf("Toplam=%d ve Ortalama=%.2f",toplam,ort);
system("pause");   
}
Sponsorlu Bağlantılar

Hiç yorum yok:

Yorum Gönder