Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In the Store class, complete the public method definition for setNumSold ( ) with the integer parameter customNumSold. Ex: If the input is 2 3

In the Store class, complete the public method definition for setNumSold() with the integer parameter customNumSold.
Ex: If the input is 23195, then the output is:
Items in stock: 231
Number of items sold: 95
public class Store {
private int numStock;
private int numSold;
public void setNumStock(int customNumStock){
numStock = customNumStock;
}
/* Your code goes here */{
numSold = customNumSold;
}
public int getNumStock(){
return numStock;
}
public int getNumSold(){
return numSold;
}
}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions