Can all the computer programmers please read!!! I have a question for you.
geeks unite! Here it is in C#.
using System;
namespace RSXTypeR
{
class FarenheitToCelsiusConverterApp
{
static void Main(string[] args)
{
Console.WriteLine("Enter temp in F :");
double f = double.Parse(Console.ReadLine());
double c = (5d/9d) * (f-32);
Console.WriteLine("Celsius temperature is {0}",c);
Console.ReadLine();
}
}
}
using System;
namespace RSXTypeR
{
class FarenheitToCelsiusConverterApp
{
static void Main(string[] args)
{
Console.WriteLine("Enter temp in F :");
double f = double.Parse(Console.ReadLine());
double c = (5d/9d) * (f-32);
Console.WriteLine("Celsius temperature is {0}",c);
Console.ReadLine();
}
}
}
My book is "Computing using C++ and Object Technology," I know this is a kiddie book.
Luder94, I'm not using the Dietel book, but I have it. Didn't get the chance to read it yet. If my source code compile in telnet/unix, does that mean I can run it with no problems with real numbers, etc.? I love C++!!! Another question for the computer minded.
Question: When I start the source code I always use #include <iostream.h> and I don't need to attach any header files along. But what if I use #include "textlib.h". Does that mean I have to attach textlib.h into my folder before I can compile it correctly? I know what <> mean but what's " "?
Luder94, I'm not using the Dietel book, but I have it. Didn't get the chance to read it yet. If my source code compile in telnet/unix, does that mean I can run it with no problems with real numbers, etc.? I love C++!!! Another question for the computer minded. Question: When I start the source code I always use #include <iostream.h> and I don't need to attach any header files along. But what if I use #include "textlib.h". Does that mean I have to attach textlib.h into my folder before I can compile it correctly? I know what <> mean but what's " "?
LOL ... how about Javascript and HTML ? 
[CODE]
<html>
<head>
<script language="javascript">
/* this function accepts an input expressed as farenheit temperature and
converts the input into temperature expressed in celsius.

[CODE]
<html>
<head>
<script language="javascript">
/* this function accepts an input expressed as farenheit temperature and
converts the input into temperature expressed in celsius.
Because of the "abstract" language used in this thread, I will have to lock this thread to prevent further source code spawnings that will/might endanger the goal of s2ki.com as a "car enthusiast" board. J/K
P.S. If I copied what some of you wrote as an answer to my program...I would probably be expelled from my university by now! HAHA
P.S. If I copied what some of you wrote as an answer to my program...I would probably be expelled from my university by now! HAHA








