https://github.com/pabitra-33/farhenit_to_celcius
Simply written programs to convert the inputted temperature in the format of farhenit and convert that to celcius using converter formula.
https://github.com/pabitra-33/farhenit_to_celcius
Last synced: about 2 months ago
JSON representation
Simply written programs to convert the inputted temperature in the format of farhenit and convert that to celcius using converter formula.
- Host: GitHub
- URL: https://github.com/pabitra-33/farhenit_to_celcius
- Owner: Pabitra-33
- Created: 2023-08-10T18:36:05.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-13T18:32:01.000Z (over 1 year ago)
- Last Synced: 2024-05-13T19:46:27.162Z (over 1 year ago)
- Language: Java
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Farhenit_To_Celcius
Simply written programs to convert the inputted temperature in the format of farhenhit and then convert that tempereture to celcius using the pre-defined converter formula.
Steps Used for this program:
First declare the double variable Celsius and Fahrenheit and take the input for temperature in Celsius using scanf function.
Calculate the temperature in Fahrenheit using the formula “Fahrenheit = (9 * Celsius) / 5 + 32;” and store it in variable named Fahrenheit.
Finally, print the result using printf function.
This is a simple Farheinhit to celcius converted program used for the conversion of the tempereture easily.