martes, 18 de agosto de 2015

Visual C# grados celsius a fathrenheit

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

namespace CelciusAfarenhei
{
    class Program
    {
        static void Main(string[] args)
        {
            double f;
            double c;

            f = 59.0;

            //convierte a celsius

            c = 5.9 / 9.0 * (f - 32.0);


            Console.WriteLine(f+" grados fahrenheit son");

            Console.WriteLine(c+ "grados celsius");

            Console.ReadLine();
        }
    }
}

No hay comentarios.:

Publicar un comentario

Es muy importante tu comentarios: