Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Домашнее задание 1 #1797

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Урок 1. Практическое задание/task_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,9 @@
Введите ваш возраст: 45
Ваши данные для входа в аккаунт: имя - Василий, пароль - vas, возраст - 45
"""

name = input("\nДобрый день,мяу! Как мне вас называть,мяу?\n")
print(f"\nМяу, {name}, мур-мур\n")

age = input(f"{name} сколько вам лет?\n")
print( f"\nВам {age}? Вы такой взрослый, {name}, мяу :3\n")
6 changes: 6 additions & 0 deletions Урок 1. Практическое задание/task_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,9 @@
Введите время в секундах: 3600
Время в формате ч:м:с - 1.0 : 60.0 : 3600
"""

import datetime

input_seconds = int(input("Введите время в секундах: "))
seconds_to_datetime = datetime.timedelta(seconds=input_seconds)
print(seconds_to_datetime)
3 changes: 3 additions & 0 deletions Урок 1. Практическое задание/task_3.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@
Введите число n: 3
n + nn + nnn = 369
"""

n = int(input("Введите число: "))
print(n + int(str(n) * 2) + int(str(n) * 3))
11 changes: 11 additions & 0 deletions Урок 1. Практическое задание/task_4.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,14 @@
Ведите целое положительное число: 123456789
Самая большая цифра в числе: 9
"""

user_num = int(input("Введите целое положительное число: "))

max_user_num = user_num % 10
user_num = user_num // 10

while user_num > 0:
if user_num % 10 > max_user_num:
max_user_num = user_num % 10
user_num = user_num // 10
print(max_user_num)
13 changes: 13 additions & 0 deletions Урок 1. Практическое задание/task_5.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,16 @@
Введите численность сотрудников фирмы: 10
Прибыль фирмы в расчете на одного сотрудника = 50.0
"""

revenue = float(input("Какая у вас выручка?\n"))
costs = float(input("Каковы издержки фирмы?\n"))

if revenue > costs:
profit = revenue - costs
staff = int(input("Введите количество сотрудников:\n"))
staff_profit = profit / staff
print(f"Прибыль на одного сотрудника компании равна:" "{:.2f}".format(staff_profit) + " рублей.")
elif revenue < costs:
print("Издержки привышают доход")
elif revenue == costs:
print("Издержки равны доходу")
14 changes: 14 additions & 0 deletions Урок 1. Практическое задание/task_6.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,17 @@
6-й день: 3,22
Ответ: на 6-й день спортсмен достиг результата — не менее 3 км.
"""

a = int(input("Каков ваш результат забега сегодня?\n"))
b = int(input("Сколько километров вы планируете пробежать?\n"))

day = 1

print(f"{str(day)} день" "%.2f" % a)

while float(a) < b:
a += float(a) * 0.1
day += 1
print(f"{str(day)} день" "%.2f" % a)

print(f"На {str(day)} день спортсмен достиг результата — не менее {str(b)} км.")