Skip to content

Commit af67c33

Browse files
committed
Praticve
1 parent e99a9a3 commit af67c33

3 files changed

Lines changed: 18 additions & 2 deletions

File tree

py/beecrowd/beecrowd-1007.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
C = int(input())
66
D = int(input())
77

8-
diff = (A * B - C * D)
9-
print(f"DIFERENCA={diff}")
8+
diff = (A*B - C*D)
9+
print(f"DIFERENCA = {diff}")

py/beecrowd/beecrowd-1008.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# beecrowd | 1008
2+
3+
N_funcionario = int(input())
4+
QTD_Horas = int(input())
5+
SALARIO = float(input())
6+
SALARIO_TOTAL = QTD_Horas * SALARIO
7+
print(f"NUMBER = {N_funcionario}")
8+
print(f"SALARY = U$ {SALARIO_TOTAL:.2f}")

py/beecrowd/beecrowd-1009.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# beecrowd | 1009
2+
3+
vendedor = str(input())
4+
salario = float(input())
5+
vendas = float(input())
6+
7+
total = (salario + (vendas * 0.15))
8+
print(f"TOTAL = R$ {total:.2f}")

0 commit comments

Comments
 (0)