Предмет: Информатика, автор: korotchukandriy

Допоможіть будьласка. Даю 60 балів.
1. Напишіть програму, яка б рахувала суму кутів опуклого багатокутника. На початку користувач повинен ввести кількість кутів. (3 бали)
2. Надрукувати усі двоцифрові числа, сума квадратів цифр яких ділиться на n націло. Число n - ціле число, яке вводить користувач. (3 бали)
3. Створити програму Банкноти України. Напишіть програму, яка виводить імена видатних особистостей України, яких зображено на грошових знаках. На початку варто у користувача запитати який номінал банкноти. Відомості про банкноти можна отримати на сайті Національного банку України bank.gov.ua. Врахуйте можливість введення значення номіналу, якого не існує. (2 бали)

Ответы

Автор ответа: Аноним
1

Ответ:

помоги и мне,если сможешь. (в профиле укр язык)

Объяснение:

1.Введення кількості кутів та їх значень, обчислення суми кутів і виведення результату:

n = int(input("Введіть кількість кутів: "))

sum_angles = 0

for i in range(n):

  angle = int(input("Введіть кут: "))

  sum_angles += angle

print("Сума кутів: ", sum_angles)

2.Введення числа n, перевірка усіх двоцифрових чисел, сума квадратів цифр яких ділиться на n націло:

n = int(input("Введіть число n: "))

for i in range(10, 100):

  digit1 = i // 10

  digit2 = i % 10

  if (digit1**2 + digit2**2) % n == 0:

      print(i)

3.Введення номіналу банкноти, виведення імен видатних особистостей, які зображені на банкноті:

import requests

from bs4 import BeautifulSoup

# Запитати користувача про номінал банкноти

nominal = int(input("Введіть номінал банкноти (1, 2, 5, 10, 20, 50, 100, 200, 500): "))

# Перевірити, чи введений користувачем номінал банкноти існує

if nominal not in [1, 2, 5, 10, 20, 50, 100, 200, 500]:

  print("Номінал банкноти не існує.")

else:

  # Завантажити сторінку з відомостями про банкноту з сайту Національного банку України

  url = f"https://bank.gov.ua/control/uk/currentmoney/cmcoin/details?coin_id={nominal}"

  response = requests.get(url)

  # Перевірити, чи сторінка успішно завантажена

  if response.status_code != 200:

      print("Не вдалося завантажити відомості про банкноту.")

  else:

      # Видобути інформацію про банкноту з HTML сторінки

      soup = BeautifulSoup(response.text, "html.parser")

      title = soup.find("div", {"class": "b-deno_title"}).text.strip()

      names = soup.find("div", {"class": "b-deno_desc"}).find_all("p")[1].text.strip().split(", ")

      # Вивести інформацію про банкноту

      print(f"Банкнота номіналом {title} грн. містить зображення наступних видатних особистостей України:")

      for name in names:

          print("- " + name)

Похожие вопросы
Предмет: Математика, автор: veronikavalova1987
Предмет: Английский язык, автор: and14kos2008
Task 4. Read the text below. Match the questions (A- F) with the passages (1-4). There are two questions you do not need to use. A What do I do if a friend tells me that he or she is in an abusive relationship? Why are some people violent? My friend is angry if I hang out with other people, what should I do? B C D What relationship can be called healthy? E What are unhealthy relationships? F How do I get out of an unhealthy or abusive relationship? SAFETY IN RELATIONSHIPS In your life, you will have relationships with a lot of people. Here are the answers to the most commonly asked questions about relationships. 1) In good relationships, you and your friend feel happy about each other, you are sincere and honest. You have common hobbies and terests, like going out together or with other friends, and enjoy each ther's company. These relationships can last for a long time. Healthy elationships are fun for both people! 2) Be honest and stick to your decision. Tell your friend you like sp time with him or her but that you also want to spend time with oth ends family.. 3) In a risky relationship, you and your friend do not usually feel g Out each other and yourselves. You may feel afraid or pressured to me- thing that you don't want to do. If you feel uncomfortable in tions or your friend hurts you, makes all the decisions, tells you o, tries to embarrass you in front of other people, then you shoul e relations as quickly as possible. rst, if you think that you are in a risky relationship, you should ent, friend, teacher, coach or other trusted person about your r With help, you can get out of an unhealthy relationship. Rem deserve to be in a relationship that is healthy and fun.помогите пж