View Single Post
Old Oct 2nd, 2004, 9:17 AM   #13
Ravilj
Programmer
 
Ravilj's Avatar
 
Join Date: Sep 2004
Location: JHB , South Africa
Posts: 79
Rep Power: 5 Ravilj is on a distinguished road
this works for me:
#include <iostream>

using namespace std;

int main()
{
	float a,b;

	cout << "Enter degrees celcius: ";
	cin >> a;	
	cout << "Degrees Fahernheit: " << (a*1.8) + 32 << endl;

	system("PAUSE");

	return 0;
}
__________________
Ravilj's OpenGL Terrain aka WinTerrain Last Updated: 17/01/2005!
Ravilj is offline   Reply With Quote