Advertisement
mariusqw

Untitled

May 5th, 2020
1,397
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.35 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int x;
  8.     cout << "Iveskite skaicius:" << endl;
  9.  
  10.     int sum = 0, k = 0;
  11.     while (x != 0)
  12.     {
  13.         cin >> x;
  14.  
  15.         if(x % 10 < 5)
  16.             sum += x;
  17.  
  18.         k++;
  19.     }
  20.  
  21.     cout << "k = " << k - 1 << endl;
  22.     cout << "s = " << sum << endl;
  23.  
  24.     return 0;
  25.    
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement