标签:
1 public class Solution 2 { 3 public static void main(String[] args) 4 { 5 final double POUND_PER_KILOGRAM = 2.2; 6 7 System.out.println("KILOGRAM" + "\t" + "POUND"); 8 for(int i = 1; i < 200; i += 2) 9 System.out.println(i + "\t" + i * POUND_PER_KILOGRAM); 10 } 11 }
标签:
原文地址:http://www.cnblogs.com/wood-python/p/5768777.html