using System;
namespace ConsoleApplication_C_Sharp
{
public static class Temperature
{
public static double CelsiusToFahrenheit(double celsius)
{
double fahrenheit = (celsius * 9 / 5) + 32;
return fahrenheit;
}
}
class Program
{
static void Main(string[] args)
{
Console.WriteLine(Temperature.CelsiusToFahrenheit(13));
}
}
}
/*
run:
55.4
*/