FP: Aula01 finished

This commit is contained in:
TiagoRG 2023-01-18 10:56:53 +00:00
parent 22ded42bbe
commit 01cde048fe
Signed by untrusted user who does not match committer: TiagoRG
GPG Key ID: DFCD48E3F420DB42
2 changed files with 27 additions and 0 deletions

11
1ano/fp/aula01/ex08.py Normal file
View File

@ -0,0 +1,11 @@
PF = 20
PC = 24.95
IMP = 0.23
SPA = 0.20
profit_per_book = ((PC - SPA) / (1 + IMP)) - PF
imp_per_book = IMP * PC
books_n = int(input('Number of sold books: '))
print(f"Lucro total: {profit_per_book * books_n:.2f}")
print(f"Total de impostos: {imp_per_book * books_n:.2f}")

16
1ano/fp/aula01/ex09.py Normal file
View File

@ -0,0 +1,16 @@
start_time = 6 * 60 + 52
walk_distance = 1
walk_pace = 10
walk_time = walk_pace * walk_distance
sprint_distance = 3
sprint_pace = 6
sprint_time = sprint_pace * sprint_distance
back_distance = walk_distance + sprint_distance
back_time = walk_pace * back_distance
final_time = start_time + walk_time + sprint_time + back_time
print(f'Chegou a casa às {final_time // 60}:{final_time % 60:02d}')