码迷,mamicode.com
首页 > 其他好文 > 详细

HW5.8

时间:2016-08-20 13:00:58      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

 

 1 public class Solution
 2 {
 3     public static void main(String[] args)
 4     {
 5         System.out.printf("%s\t%s\t%s\t%s\n", "Celsius", "Fahrenheit", "Fahrenheit", "Celsius");
 6 
 7         for(double i = 40, j = 120; i >= 31 && j >= 30; i--, j -= 10)
 8             System.out.printf("%.1f\t%.2f\t%.1f\t%.2f\n", i, celsiusToFahrenheit(i), j, fahrenheitToCelsius(j));
 9     }
10 
11     public static double celsiusToFahrenheit(double celsius)
12     { return (9.0 / 5) * celsius + 32; }
13 
14     public static double fahrenheitToCelsius(double fahrenheit)
15     { return (5.0 / 9) * (fahrenheit - 32); }
16 }

 

HW5.8

标签:

原文地址:http://www.cnblogs.com/wood-python/p/5790101.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!