язык программирования python
summ = 0
pro = 0
first = True
N = int(input('Введите N: '))
K = int(input('Введите K: '))
M = int(input('Введите M: '))
str_A = input('Введите последовательность a через пробел: ').split()
A = [int(item) for item in str_A]
for i in range(1, N + 1, 2):
if A[i] % K != 0 and A[i] % M == 0 and first:
first = False
summ = A[i]
pro = A[i]
elif A[i] % K != 0 and A[i] % M == 0 and not(first):
summ += A[i]
pro *= A[i]
print('Сумма: ' + str(summ))
print('Произведение: ' + str(pro))
5б:
x = input("введите число: ")
y = ""
for i in range(len(x)):
y += (x[-i])
if x==y:
print ("Перевертыш")
else:
print ("Нет")
6:
x1 = int(input("x1: "))
y1 = int(input("y1: "))
x2 = int(input("x2: "))
y2 = int(input("y2: "))
R1 = (x1**2 + y2**2)**(0.5)
R2 = (x2**2 + y2**2)**(0.5)
if R1 > R2:
print ("2 ближе")
elif R2>R1:
print ("1 ближе")
print("одинаково")
7:
a = int(input("1 сторона: "))
b = int(input("2 сторона: "))
c = int(input("3 сторона: "))
if (a>=b+c) or (b>=a+c) or (c>=b+a):
print("не существует")
elif a==b and b==c:
print ("Равносторонний")
elif a==b or b==c or a==c:
print ("Равнобедренный")
print("Существует")
Объяснение:
Там все понятно
язык программирования python
summ = 0
pro = 0
first = True
N = int(input('Введите N: '))
K = int(input('Введите K: '))
M = int(input('Введите M: '))
str_A = input('Введите последовательность a через пробел: ').split()
A = [int(item) for item in str_A]
for i in range(1, N + 1, 2):
if A[i] % K != 0 and A[i] % M == 0 and first:
first = False
summ = A[i]
pro = A[i]
elif A[i] % K != 0 and A[i] % M == 0 and not(first):
summ += A[i]
pro *= A[i]
print('Сумма: ' + str(summ))
print('Произведение: ' + str(pro))
5б:
x = input("введите число: ")
y = ""
for i in range(len(x)):
y += (x[-i])
if x==y:
print ("Перевертыш")
else:
print ("Нет")
6:
x1 = int(input("x1: "))
y1 = int(input("y1: "))
x2 = int(input("x2: "))
y2 = int(input("y2: "))
R1 = (x1**2 + y2**2)**(0.5)
R2 = (x2**2 + y2**2)**(0.5)
if R1 > R2:
print ("2 ближе")
elif R2>R1:
print ("1 ближе")
else:
print("одинаково")
7:
a = int(input("1 сторона: "))
b = int(input("2 сторона: "))
c = int(input("3 сторона: "))
if (a>=b+c) or (b>=a+c) or (c>=b+a):
print("не существует")
elif a==b and b==c:
print ("Равносторонний")
elif a==b or b==c or a==c:
print ("Равнобедренный")
else:
print("Существует")
Объяснение:
Там все понятно