lunes, 21 de septiembre de 2009

PRTACTICA 3-4 CONSOLA


inicio
flotantes temp,fah,celsius
caracter tipo
imprime"introduce valor de temperatura"
leer temp
imprime "introduce letra f prara fahrenheit o c paracelcius"
leer tipo
si (tipo=="f" o tipo=="F")
{
celsius=(5.0/9.0)*(temp-32.0)
imprime"la temperatura",celcius,"grados celsius"
}
de lo contrario
{
si (tipo=="c" o tipo =="c")
{
fah=(9.0/5.0)*temp+32.0imprime"la temperatura",temp,"celsius""es igual",fah,"grados fahrenheit"
}
de lo contrario
{
imprime"datos incorrectos"
}
}
}

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

namespace ejercicio_4
{
class Program
{
static void Main(string[] args)
{
double tem, fah, cel;


Console.WriteLine("Introduce valor de temperatura");
tem = double.Parse(Console.ReadLine());
Console.WriteLine("Introduce letra f para fahrenehit o c para celsius");
string tipo = Console.ReadLine();

if (tipo == "f" tipo == "F")
{
cel = (5.0 / 9.0) * (tem - 32.0);
Console.WriteLine("La temperatura {0} grados fahrenheit es igual a {1} grados celsius", tem, cel);


}
else
{
if (tipo == "c" tipo == "C")
{
fah = (9.0 / 5.0) * (tem + 32.0);
Console.WriteLine("La temperatura {0} grados celsuis es igual a {1} grados fahrehint", tem, fah);

}

else

{
Console.WriteLine("datos incorrectos");

}
}




Console.ReadLine();





}

}
}


No hay comentarios:

Publicar un comentario