Advertisement
Guest User

Untitled

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