/** * Write a description of class TestProgram here. * * @author (your name) * @version (a version number or a date) */ public class TestProgram { public static void main() { Car car1 = new Car("Toyato","Prius", 19000.00); Car car2 = new Car("Ford","Edge", 19000.00); System.out.println(String.format("$%,9.2f\t%s", car1.getPrice() , car1)); System.out.println(String.format("$%,9.2f\t%s", car2.getPrice() , car2)); } }