/******************************************************************************
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 <iostream>
#include <iomanip>
using namespace std;
int main() {
int somme = 0;
float moyenne = 0.0;
cout << "Tableau 2" << endl;
int tab[6] = {15, 11, 10, 14, 18, 5};
for (int i = 0; i < 6; i++) {
somme += tab[i];
}
moyenne = somme / 6.0f;
cout << "Somme : " << somme << endl;
cout << fixed << setprecision(2);
cout << "Moyenne : " << moyenne << endl;
return 0;
}