public class Solution { public static void main(String[] args) { final double POUND_PER_KILOGRAM = 2.2; System.out.println("KILOGRAM" + "\t" + "POUND"); for(int i = 1; i < 200; i += 2) System.out.println(i + "\t" + i * POUND_PER_KILOGRAM); } }
public class Solution { public static void main(String[] args) { final double POUND_PER_KILOGRAM = 2.2; System.out.println("KILOGRAM" + "\t" + "POUND"); for(int i = 1; i < 200; i += 2) System.out.println(i + "\t" + i * POUND_PER_KILOGRAM); } }