TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
CGameplayHD CGameplayHD
NA
5
698
Calling methods C# -Having Trouble calling the methods
Nov 8 2016 6:11 PM
namespace TemperatureConvertions
{
class TemperatureConversion
{
public static double FTOC(double c)
{
return ((9.0 / 5.0) * c) + 32;
}
public static double CTOF(double f)
{
return (5.0 / 9.0) * (f - 32);
}
static void Main(string[] args)
{
double Temperature;
TemperatureConversion T = new TemperatureConversion();
Temperature = T.c;
Console.WriteLine("Enter Temperature In Celcius: ", Temperature);
Console.ReadLine();
}
}
}
Reply
Answers (
1
)
How to rectify cannot be opened because it is version 852.
Visual Studio MPF 14.0 missing