Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main () {
  5.  
  6. int x,s=0;
  7. while (x>=0) {
  8. cout<<" wprowadź liczbe ";
  9. cin>>x;
  10.  
  11. if (x>5) s+=x;
  12. }
  13.  
  14. cout<<s;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement