Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. a = float(input())
  2. b = float(input())
  3. c = input()
  4. if (c == '+'):
  5. print (a+b)
  6. if (c == '-'):
  7. print (a-b)
  8.  
  9. if (c == '/'):
  10. if (b!=0):
  11. print (a/b)
  12. else:
  13. print ("Деление на 0!")
  14.  
  15. if (c == '*'):
  16. print (a*b)
  17.  
  18. if (c == 'mod'):
  19. if (b!=0):
  20. print (a % b)
  21. else:
  22. print ("Деление на 0!")
  23.  
  24. if (c == 'pow'):
  25. print (a ** b)
  26.  
  27. if (c == 'div'):
  28. if (b!=0):
  29. print (a // b)
  30. else:
  31. print ("Деление на 0!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement