Advertisement
Guest User

Untitled

a guest
Feb 17th, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. a = 9
  2. b = 6
  3.  
  4. print("1. dodawanie")
  5. print("2. odejmowanie")
  6. print("3. mnozenie")
  7. print("4. dzielenie")
  8. print("5. potegowanie")
  9.  
  10. wybor = int(input("wybierz co chcesz zrobic: "))
  11.  
  12. if wybor == 1:
  13. print("wynik: ", a + b)
  14. elif wybor == 2:
  15. print("wynik: ", a - b)
  16. elif wybor == 3:
  17. print("wynik: ", a * b)
  18. elif wybor == 4:
  19. print("wynik: ", a / b)
  20. elif wybor == 5:
  21. print("wynik: ", a ** b)
  22. else:
  23. print("nie ma takiej liczby")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement