Celsius scale is a temperature scale that is based on the freezing point of water at 0 °C and the boiling point of water at 100 °C. Fahrenheit scale is a temperature scale that has a freezing point of water at 32 °F and the boiling point of water at 212 °F.
Examples:
Input : 0
Output: 32
Input :-40
Output:-40
fahrenheit=(celsius*1.8)+32
Approach:
- Initializing value of celsius as 10.0 and Fahrenheit value as 0.0
- Calculate the Fahrenheit using the below formula
- Fahrenheit=(celsius*1.8)+32;
- Display Fahrenheit.
Below is the implementation of the above approach:
Java
class celsiustofahrenheit {
public static void main(String[] args)
{
double celsius = 10.0 , fahrenheit = 0.0 ;
fahrenheit = (celsius * 1.8 ) + 32 ;
System.out.println(
" value of temperature in fahrenheit:"
+ fahrenheit);
}
}
|
Output
value of temperature in fahrenheit:50.0
Time Complexity: O(1)
Space Complexity: O(1)
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
24 Nov, 2020
Like Article
Save Article