lunes, 21 de septiembre de 2009

PRACTICA 3-2 CONSOLA




Pseudocódigo
Inicio
Variables p, área a, b, c
Imprime “introduce las longitudes de un triangulo”
Leer aLeer bLeer c P= (a+b+c) / 2Area=sqrt(p*(p-a)*(p-b)*(p-c)
Imprime “el área del triangulo es “área
Final
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace practica_3_1_area_de_un_triangulo__Console
{
class Program
{
static void Main(string[] args)
{
double p, are, a, b, c;
Console.WriteLine("Introduce las 3 longitudes de un triangulo");
a = float.Parse(Console.ReadLine());
b = float.Parse(Console.ReadLine());
c = float.Parse(Console.ReadLine());
p= (a+b+c)/2.0f;
are = Math.Sqrt(p*(p-a)*(p-b)*(p-c));
Console.WriteLine("El area de un triangulo es {0}",are);
Console.ReadKey();


}
private static float sqrt(float p)
{
throw new NotImplementedException();
}
}
}

No hay comentarios:

Publicar un comentario