Advertisement
Guest User

prog1

a guest
Aug 23rd, 2015
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std ;
  4.  
  5. int main ()
  6.  
  7. {
  8. cout<<"podaj wartosc ograniczenia predkosci" ;
  9. int a;
  10. cin>>a ;
  11. cout<<"podaj wartosc predkosci z jaka jechales";
  12. int b;
  13. cin>>b;
  14. int c=b-a ;
  15. if (c<=0)
  16. cout<< "Nie ma mandatu, mozesz jechac dalej" ;
  17. if (c<=10)
  18. cout<< "Twoj mandat wynosi 100 PLN" ;
  19. if (c<=30)
  20. cout<<"Twoj mandat wynosi 200 PLN" ;
  21. if (c<=60)
  22. cout<<"Twoj mandat wynosi 400 PLN" ;
  23. else
  24. cout<<"Zgnijesz w Sztumie" ;
  25.  
  26. getch ()
  27. return 0;
  28.  
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement