Mega Code Archive

 
Categories / C++ Tutorial / Data Types
 

Read float number from console

#include <iostream>    float Convert(float);    int main()  {      float TempFer;      float TempCel;        std::cout << "Please enter the temperature in Fahrenheit: ";      std::cin >> TempFer;      TempCel = Convert(TempFer);      std::cout << "\nHere's the temperature in Celsius: ";      std::cout << TempCel << std::endl;      return 0;  }    float Convert(float TempFer)  {      float TempCel;      TempCel = ((TempFer - 32) * 5) / 9;      return TempCel;  } Please enter the temperature in Fahrenheit: 12 Here's the temperature in Celsius: -11.1111