Допоможіть, програма Бажано на фото
1. Дано два ненульових числа. Знайти суму, різницю, добуток і частку їх квадратів. 2. Поміняти місцями вміст змінних А і В та вивести нові значення А і В. 3. Дано масу М в кілограмах. Використовуючи операцію ділення націло, знайти кількість повних тон в ній (1 тонна = 1000 кг). =
Answers & Comments
Рішення 1:
# Get the two numbers
a = float(input())
b = float(input())
# Calculate the sum, difference, product, and quotient of their squares
sum_squares = a**2 + b**2
diff_squares = a**2 - b**2
prod_squares = a**2 * b**2
quot_squares = a**2 / b**2
# Print the results
print("Sum of the squares:", sum_squares)
print("Difference of the squares:", diff_squares)
print("Product of the squares:", prod_squares)
print("Quotient of the squares:", quot_squares)
Рішення 2:
# Get the values of A and B
A = float(input())
B = float(input())
# Swap the values of A and B
temp = A
A = B
B = temp
# Print the new values of A and B
print("New value of A:", A)
print("New value of B:", B)
Рішення 3:
# Get the mass in kilograms
mass_kg = float(input())
# Calculate the number of full tons in the mass
num_tons = mass_kg // 1000
# Print the result
print("Number of full tons:", num_tons)
Маю надію що зміг допомогти, фото програми я прикріпив знизу, гарного вечору!!