作業1-1華氏温度と摂氏温度の対照表を印刷する

2171 ワード

 1 public class Lianxi_1_1 {
 2     public static void main(String[] args) {
 3 /*    C=(5/9)(F-32)                。
 4  *              ;
 5  *            。
 6  *         ,     ( 300  0    )       。
 7  */
 8         System.out.println("              ");    
 9        for(int F=300;F>=0;F-=20) {
10            float C=(float)(5/9.0)*(F-32);
11            System.out.println(F+"\t"+(int)C/1.0);
12        }
13     }
14 }

実行結果:
              
300    148.0
280    137.0
260    126.0
240    115.0
220    104.0
200    93.0
180    82.0
160    71.0
140    60.0
120    48.0
100    37.0
80    26.0
60    15.0
40    4.0
20    -6.0
0    -17.0

 
転載先:https://www.cnblogs.com/spsglz/p/7511090.html