0
/ 10
Which lines contain the fields?
public class Test { private final int SHIRTS = 24; private int numPants= 14; private int tanks =0; public...
Which lines contain the fields?
public class Test {
private final int SHIRTS = 24;
private int numPants= 14;
private int tanks =0;
public Test(int blueJeans, int tankTops) {
tanks = tanks + tankTops;
numPants = blueJeans+ numPants;
}
}//end of class
Your feedback will appear here when you check your answer.