guy

May. 18th 10:53 PM 2008
u are ruining my profile and yours too .... you were are humans here, not C++ compilers, so speak human language.

Convert++

May. 16th 05:27 PM 2008
#include
#include
#include
using namespace std;

int main(int nNumberofArgs, char* pszArgs[])
{
// enter the temperature in Celsius
int celsius;
cout > celsius;

// calculate conversion factor for Celsius
// to Fahrenheit
int factor;
factor = 212 - 32;

//use conversion factor to convert Celsius
// into Fahrenheit values
int fahrenheit;
fahrenheit = factor * celsius/100 + 32;

// output the results (followed by a Newline)
cout