Example #1
0
    public static void Main(string[] args)
    {
        Triângulo triângulo = new Triângulo();
        Catetos   cateto    = (Catetos)triângulo;

        cateto.oposto    = System.Int32.Parse(args[0]);
        cateto.adjacente = System.Int32.Parse(args[1]);

        System.Console.WriteLine(triângulo.hipotenusa);
    }
Example #2
0
    public double Calcular(Catetos cat)
    {
        double calc = cat.oposto * cat.oposto + cat.adjacente * cat.adjacente;

        return(System.Math.Sqrt(calc));
    }