/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby,
C#, VB, Perl, Swift, Prolog, Javascript, Pascal, HTML, CSS, JS
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
#include <stdio.h>
int main()
{
int somme = 0 ;
float moyenne = 0;
printf("Tableau 2 \n");
int tab[6] = {15,11,10,14,18,5};
for(int i = 0 ; i < 6 ; i++) {
somme = somme + tab[i];
}
moyenne = somme /6.0;
printf("Somme : %d \nMoyenne : %0.2f \n", somme, moyenne);
return 0;
}