// Problema: // Dati 3 numeri interi, calcolarne la media // Input: 3 numeri interi // Output: 1 numero reale (= media dei numeri in input) // Programma: #include int main() {bool b; int x,y,z; cout << "dammi 3 numeri interi" << endl; cin >> x >> y >> z; float m = (x + y + z) / 3.0; cout << "la media e' " << m; b=true; return 0; }