Exemple #1
0
        static void Main(string[] args)
        {
            IngressoVip vip = new IngressoVip();

            vip.IngressoPreco = 23.90f;
            vip.ImprimirValor();
            vip.AdicionarValor();

            Console.WriteLine("A diferença de valores é: ");
        }
Exemple #2
0
        static void Main(string[] args)
        {
            IngressoVip bilhete = new IngressoVip();

            bilhete.Valor          = 20f;
            bilhete.ValorAdicional = 15.50f;
            bilhete.ImprimirValor();
            bilhete.MostrarValorVip();

            System.Console.WriteLine($"A diferença entre os valores é de R$ {bilhete.ValorAdicional}");
        }