martes, 18 de agosto de 2015

C# calcular la longitud de una hipotenusa dadas las longitudes de los catetos

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace hipotenusa
{
    class Program
    {
        static void Main(string[] args)
        {
            //ejemplo Sqrt() para calcular la longitud de una hipotenusa dadas las longitudes de los catetos


            double x, y, z;

            x = 3;
            y = 4;


            z = Math.Sqrt(x*x + y*y);

            Console.WriteLine("La hipotenusa es: "+z);

            Console.ReadLine();

        }
    }
}

No hay comentarios.:

Publicar un comentario

Es muy importante tu comentarios: