Advertisement
SergeyPGUTI

4.2.15

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