We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e99a9a3 commit af67c33Copy full SHA for af67c33
3 files changed
py/beecrowd/beecrowd-1007.py
@@ -5,5 +5,5 @@
5
C = int(input())
6
D = int(input())
7
8
-diff = (A * B - C * D)
9
-print(f"DIFERENCA={diff}")
+diff = (A*B - C*D)
+print(f"DIFERENCA = {diff}")
py/beecrowd/beecrowd-1008.py
@@ -0,0 +1,8 @@
1
+# beecrowd | 1008
2
+
3
+N_funcionario = int(input())
4
+QTD_Horas = int(input())
+SALARIO = float(input())
+SALARIO_TOTAL = QTD_Horas * SALARIO
+print(f"NUMBER = {N_funcionario}")
+print(f"SALARY = U$ {SALARIO_TOTAL:.2f}")
py/beecrowd/beecrowd-1009.py
+# beecrowd | 1009
+vendedor = str(input())
+salario = float(input())
+vendas = float(input())
+total = (salario + (vendas * 0.15))
+print(f"TOTAL = R$ {total:.2f}")
0 commit comments