您的位置:首页 > 其它

第四周作业-周末提高班

2014-03-29 19:43 447 查看
import java.util.Scanner;

public class FahrenheitToCelsius
{
public static void main(String args[]){
Scanner input=new Scanner(System.in);

System.out.print("Enter a degree in Fathreheit:");
double fahrenheit=input.nextDouble();
//conver Fahrenheit to Celsius
double celsius=(5.0/9)*(fahrenheit-32);
System.out.println("Fahrenheit"+fahrenheit+"is"+celsius+"in Celsius");
}
}


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: