标签:
1 public class Solution 2 { 3 public static void main(String[] args) 4 { 5 System.out.println("(9.5 * 4.5 - 2.5 * 3) / (45.5 - 3.5) = " + (9.5 * 4.5 - 2.5 * 3) / (45.5 - 3.5)); 6 } 7 }
HW1.5
原文地址:http://www.cnblogs.com/wood-python/p/5743731.html