public class Computer{ String name; private double price; private double performance; public Computer(String theName, double thePrice, double thePerformance){ name=theName; price=thePrice; performance=thePerformance; } }
public class Computer{ String name; private double price; private double performance; public Computer(String theName, double thePrice, double thePerformance){ name=theName; price=thePrice; performance=thePerformance; } }