Advertisement
Guest User

Untitled

a guest
Feb 17th, 2020
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main(){
  5. int x;
  6. int sum=0;
  7.  
  8.  
  9. do{
  10. cout<<"Ievadi skaitli: ";
  11. cin >> x;
  12. if (x%2==0){
  13. sum = sum+x;
  14. }
  15. }while (x%2==0);
  16.  
  17.  
  18.  
  19.  
  20.  
  21. cout<< "\nIevadito para skaitlu summa: " <<sum<<"\n";
  22. system ("pause");
  23. return 0;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement