Realizar un programa para convertir grados Celsius a Fahrenheit
CODIGO FUENTE
using System;
using System.Collections.Generic;
using System.Text;
namespace Ejemplo_18
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Ingresa Grados Centigrados");
double c = Convert.ToDouble(Console.ReadLine());
double f = (c * 9 / 5) + (32);
Console.WriteLine(c + "ºC equivale a " + f + "ºF");
Console.ReadLine();
}
}
}
CODIGO FUENTE
using System;
using System.Collections.Generic;
using System.Text;
namespace Ejemplo_18
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Ingresa Grados Centigrados");
double c = Convert.ToDouble(Console.ReadLine());
double f = (c * 9 / 5) + (32);
Console.WriteLine(c + "ºC equivale a " + f + "ºF");
Console.ReadLine();
}
}
}