Загрузить файлы в «/»

This commit is contained in:
LyalinaA 2025-11-27 09:23:34 +00:00
commit 97f8df254a

31
dfjhgerg.py Normal file
View File

@ -0,0 +1,31 @@
def calculator():
print("Выберите операцию:")
print("1. Сложение")
print("2. Умножение")
print("3. Вычитание")
print("4. Деление")
choice = input("Введите номер операции (1/2/3/4): ")
if choice in ['1', '2','3','4']:
num1 = float(input("Введите первое число: "))
num2 = float(input("Введите второе число: "))
if choice == '1':
result = num1 + num2
operation = "Сложение"
if choice == '2':
result = num1 * num2
operation = "Умножение"
if choice == '3':
result = num1 - num2
operation = "Вычитание"
if choice == '4':
result = num1 / num2
operation = "Деление"
print(f"Результат {operation}: {result}")
else:
print("Некорректный ввод.")
calculator()