Sunday 9 August 2015

Celsius to Réaumur Converter

Leave a Comment

Temperature Scale Ranges

°C: degree Celsius (centigrade), °Re: Réaumur, °F: degree Fahrenheit, K: Kelvin, °Ra: Rankine
Scale Factor°C°Réaumur°FK°Rankine
Boiling point of water
at 1 atmosphere
10080212373.15671.67
Freezing point of water
at 1 atmosphere
0032273.15491.67

Questions:

Celsius to Réaumur Converter

Code:

// Celsius to Réaumur Converter
#include<iostream>
using namespace std;

//Prototype
float Celsius_to_Réaumur(float);
void main()
{
       //Title
       cout<<"Celsius to Réaumur Converter by cppexamples.blogspot.com"<<endl<<endl;
       float Celsius=0;
       cout<<"Enter Celsius = ";
       cin>>Celsius;
       cout<<"Réaumur === "<<Celsius_to_Réaumur(Celsius)<<endl;
}

//Defination
float Celsius_to_Réaumur(float Celsius){
return Celsius*0.8;
}





Output
Celsius to Réaumur Converter
Celsius to Réaumur Converter

If You Enjoyed This, Take 5 Seconds To Share It

0 Questions: