Question: Hi please help me code this and finish the blanks please, Thank you! Write a static method that will convert s temperature in Fahrenheit to

Hi please help me code this and finish the blanks please, Thank you!

Write a static method that will convert s temperature in Fahrenheit to Kelvin. The method will be given the temperatures in Fahrenheit and must return the temperature in Kelvin. Tne formula for converting Fahrenheit to Kelvin is : Kelvin = (5/9)*(Fahrenheit-32)+273.15.

class program{

static void main(String[]args){

System.out.println(Convert(95.9));//print 308.65

System.out.println(Convert(35.6));//print 275.15

System.out.println(Convert(32));//print 273.15

}

public BLANK Convert(BLANK){

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!