Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. int piwo;
  8. int godzina = 0;
  9. int alkohol;
  10. cout << "ile piw wypiles: ";
  11. cin >> piwo;
  12. alkohol = piwo * 18;
  13.  
  14. while ( alkohol >= 0 )
  15. {
  16. alkohol -= 10;
  17. godzina++;
  18. }
  19.  
  20. cout << "po wypiciu " << piwo << " piw, bedziesz trzezwial: " << godzina << " godzin.";
  21.  
  22. return 0;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement