Posts by Emir Calife • 20 points
2 posts
-
0
votes3
answers124
viewsA: if and Else in Python
if salario <= 1250: aumento = (salario * 15 / 100) + salario #reajusta em 15% else: aumento = (salario * 10 / 100) + salario #reajusta em 10% print('Seu salário com reajuste é…
-
-2
votes2
answers143
viewsQ: Instantiating a class as being property of another class
I have the classes: using System; namespace Model { public class Profissionais { public int idProfissional { get; set; } public String Nome { get; set; } public String CPF { get; set; } public…