How to convert celsius to fahrenheit in static class with static method in C#

1 Answer

0 votes
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

*/

 



answered Dec 31, 2016 by avibootz

Related questions

1 answer 135 views
1 answer 202 views
202 views asked Sep 14, 2020 by avibootz
3 answers 346 views
346 views asked May 2, 2015 by avibootz
1 answer 206 views
1 answer 191 views
1 answer 128 views
...