-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalc.py
58 lines (49 loc) · 1.59 KB
/
calc.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import math
# Функция для решения дискриминанта
def discriminant(a, b, c):
return b*2 - 4ac
# Функция для нахождения корней
def find_roots(a, b, c):
d = discriminant(a, b, c)
if d < 0:
return None
elif d == 0:
return -b / (2a)
else:
x1 = (-b + math.sqrt(d)) / (2a)
x2 = (-b - math.sqrt(d)) / (2a)
return (x1, x2)
# Функция для сокращения дроби
def reduce_fraction(numerator, denominator):
gcd = math.gcd(numerator, denominator)
return (numerator // gcd, denominator // gcd)
# Функция для вычисления факториала
def factorial(n):
if n == 0:
return 1
else:
return n * factorial(n-1)
# Пример использования
a = 1
b = -5
c = 6
# Решаем дискриминант и выводим результат
d = discriminant(a, b, c)
print("Дискриминант:", d)
# Находим корни и выводим результат
roots = find_roots(a, b, c)
if roots is None:
print("Нет корней")
elif isinstance(roots, float):
print("Один корень:", roots)
else:
print("Два корня:", roots)
# Сокращаем дробь и выводим результат
numerator = 6
denominator = 12
reduced = reduce_fraction(numerator, denominator)
print(f"Сокращенная дробь {numerator}/{denominator}: {reduced[0]}/{reduced[1]}")
# Вычисляем факториал и выводим результат
n = 5
fact = factorial(n)
print(f"{n}! = {fact}")