Java code to convert temperature in …

CBSE, JEE, NEET, CUET
Question Bank, Mock Tests, Exam Papers
NCERT Solutions, Sample Papers, Notes, Videos
Posted by Merin J Maria 8 years, 2 months ago
- 1 answers
 
Related Questions
Posted by Simran Batra 1 year, 4 months ago
- 0 answers
 
Posted by Prapti Dubey 1 year, 5 months ago
- 0 answers
 
Posted by Akib Chowdhury 1 year, 5 months ago
- 1 answers
 
Posted by Martina Sangchoju 1 year, 9 months ago
- 2 answers
 
Posted by Yashika Kakkar 1 year, 5 months ago
- 1 answers
 
Posted by Parth Chaudhary 1 year, 8 months ago
- 2 answers
 
Posted by Arifa Meharun 1 year, 3 months ago
- 0 answers
 
Posted by Siya Vishwakarma 1 year, 6 months ago
- 1 answers
 

myCBSEguide
Trusted by 1 Crore+ Students

Test Generator
Create papers online. It's FREE.

CUET Mock Tests
75,000+ questions to practice only on myCBSEguide app
 myCBSEguide
          
Priya Singh 7 years, 9 months ago
/*
Visit http://www.programmingwithbasics.com/
*/
class CtoF
{
public static void main(String[] args)
{
float cel,feh;
Scanner scan = new Scanner(System.in);
System.out.println("Enter The Temperature in Celsius");
cel = scan.nextFloat();
feh = 32 + (cel * 9 / 5);
System.out.println("Temperature in Fahrenheit = " + feh);
}
}
0Thank You