// Questo programma รจ stato scritto da Fabio // iterazione realizzata con for #include int main() { int numero,totale=0; for ( int i=1; i<=5; i++) { std::cout << "Inserisci numero" << i<< std::endl; std::cin >> numero ; totale = totale + numero; } std::cout << totale << std::endl; return 0; }