Advertisement
MeehoweCK

Untitled

Dec 6th, 2020
526
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6.     int n;
  7.     int suma=0;
  8.  
  9.     do
  10.     {
  11.         cin >> n;
  12.         suma += n;
  13.     } while(n != 0);
  14.  
  15.     cout<<suma;
  16.  
  17.     return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement