示例#1
0
        static void Main(string[] args)
        {
            Humano      jota     = new Humano("Joao", "Jota");
            Trabalhador testolfo = new Trabalhador("Testolfo", "Rocha");

            Console.WriteLine()
        }
        static void Main(string[] args)
        {
            Humano      jota     = new Humano("João", "Jota");
            Trabalhador testolfo = new Trabalhador("Testolfo", "Rocha", 4000, 100);

            testolfo.InformarRemuneracaoPorHora();

            Estudante bob = new Estudante("Bob", "Nelson", 7);

            bob.InformarSeAprovado();
            Console.ReadLine();
        }