Program for Celsius To Fahrenheit conversion
Given a Temperature ‘n’ in Celsius scale, your task is to convert it into Fahrenheit scale.
Examples:
Input : 0 Output : 32 Input : -40 Output : -40
Formula for converting Celsius scale to Fahrenheit scale
T(°F) = T(°C) × 9/5 + 32
C++
// CPP program to convert Celsius// scale to Fahrenheit scale#include <bits/stdc++.h>using namespace std;// function to convert Celsius// scale to Fahrenheit scalefloat Cel_To_Fah(float n){ return ((n * 9.0 / 5.0) + 32.0);}// driver codeint main(){ float n = 20.0; cout << Cel_To_Fah(n); return 0;} |
Java
// Java program to convert Celsius// scale to Fahrenheit scaleclass GFG{// function to convert Celsius// scale to Fahrenheit scalestatic float Cel_To_Fah(float n){ return ((n * 9.0f / 5.0f) + 32.0f);}// Driver codepublic static void main(String[] args) { float n = 20.0f; System.out.println(Cel_To_Fah(n));}}// This code is contributed by Anant Agarwal. |
Python3
# Python code to convert Celsius scale# to Fahrenheit scaledef Cel_To_Fah(n): # Used the formula return (n*1.8)+32# Driver Coden = 20print(int(Cel_To_Fah(n)))# This code is contributed by Chinmoy Lenka |
C#
// C# program to convert Celsius// scale to Fahrenheit scaleusing System;class GFG { // function to convert Celsius// scale to Fahrenheit scalestatic float Cel_To_Fah(float n){ return ((n * 9.0f / 5.0f) + 32.0f);}// Driver codepublic static void Main(){ float n = 20.0f; Console.Write(Cel_To_Fah(n));}}// This code is contributed by Nitin Mittal. |
PHP
<?php// PHP program to convert Celsius// scale to Fahrenheit scale// function to convert Celsius// scale to Fahrenheit scalefunction Cel_To_Fah($n){ return (($n * 9.0 / 5.0) + 32.0);} // Driver Code $n = 20.0; echo Cel_To_Fah($n); // This code is contributed by nitin mittal?> |
Javascript
<script>// Javascript program to convert Celsius// scale to Fahrenheit scale// function to convert Celsius// scale to Fahrenheit scalefunction Cel_To_Fah(n){ return ((n * 9.0 / 5.0) + 32.0);}// driver code let n = 20.0; document.write(Cel_To_Fah(n));// This code is contributed by Mayank Tyagi</script> |
Output:
68
Attention reader! Don’t stop learning now. Get hold of all the important mathematical concepts for competitive programming with the Essential Maths for CP Course at a student-friendly price. To complete your preparation from learning a language to DS Algo and many more, please refer Complete Interview Preparation Course.


