Tuesday, December 13, 2011

Program to convert Fahrenheit to Celsius in C-Sharp


/* Program to convert Fahrenheit to Celsius */
using System;
class FtoC
{
    static void Main()
    {
        double f;
        double c;
        f = 59.0;
        c = 5.0 / 9.0 * (f - 32.0);
        Console.Write(f + " degrees fahrenheit is ");
        Console.WriteLine(c + " degree celsius.");
    }
}

No comments:

Google : The top most search engine

Google : MAGIC BOX

nRelate - Posts and Homepage

LinkWithin

Related Posts Plugin for WordPress, Blogger...

Which is the toughest subject ?