fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int somma = 0;
  6. int numero;
  7.  
  8. do
  9. {
  10. cout << "Inserisci un numero: " << endl;
  11. cin >> numero;
  12.  
  13. somma = somma + numero;
  14. cout << "Somma totale: " << somma << endl;
  15. }
  16. while (somma <= 10);
  17.  
  18. return 0;
  19. }
Success #stdin #stdout 0.01s 5284KB
stdin
4
stdout
Inserisci un numero: 
Somma totale: 4
Inserisci un numero: 
Somma totale: 8
Inserisci un numero: 
Somma totale: 12