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 7 years, 3 months ago
- 1 answers
Related Questions
Posted by Siya Vishwakarma 7 months, 2 weeks ago
- 1 answers
Posted by Arifa Meharun 4 months ago
- 0 answers
Posted by Prapti Dubey 6 months ago
- 0 answers
Posted by Honey Hanisha 9 months, 3 weeks ago
- 0 answers
Posted by Parth Chaudhary 9 months, 1 week ago
- 2 answers
Posted by Martina Sangchoju 9 months, 3 weeks ago
- 2 answers
Posted by Simran Batra 5 months, 1 week ago
- 0 answers
Posted by Yashika Kakkar 6 months, 2 weeks ago
- 1 answers
Posted by Akib Chowdhury 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
Priya Singh 6 years, 10 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