Advertisement
Guest User

Untitled

a guest
Feb 19th, 2020
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. double x, y, z;
  8. int w;
  9. cout << "Zakonczyc program?"<< endl;
  10. cout << "1- tak" << endl;
  11. cout << "2 - nie" << endl;
  12. cin >> w;
  13. if(w == 2)
  14. {
  15. exit(0);
  16. }
  17. else
  18. {
  19. cout << "Podaj dystans" << endl;
  20. cin >> x;
  21. cout << "Podaj ilosc spalonego paliwa" << endl;
  22. cin >> y;
  23. z = (y*100)/x;
  24. cout << "Sredna ilosc spalonego paliwa na 100 km wynosi: " << z << endl;
  25. cout << "Zakonczyc program t/n ?" << endl;
  26. cin >> w;
  27. }
  28. return 0;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement