Guest User

Untitled

a guest
Apr 4th, 2021
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.44 KB | None | 0 0
  1. print("Нажмите Enter!")
  2.  
  3. init()
  4.  
  5. name = input(Напиши своё имя)
  6.  
  7.  
  8. what = input( "Что выберешь? (+, -, ): " )
  9.  
  10. a = float( input("Первое число: ")
  11. b = float( input("Второе число: ")
  12.  
  13. if what == "+":
  14.     c = a + b
  15.     print ("Выходит: " + str(c))
  16. elif what == "-"
  17.     с = a - b
  18.     print("Выходит: " - srt(c))
  19. else:
  20.     print("Тебе сказали... ЛИБО +, ЛИБО -")
  21.  
Advertisement
Add Comment
Please, Sign In to add comment