Question: Create a tester class which creates a BulgarianSolitaire object and then call the play method in that object to play a game of Bulgarian Solitaire.

Create a tester class which creates a BulgarianSolitaire object and then call the play method in that object to play a game of Bulgarian Solitaire.
Here is an example of a class and a tester class.
Notice that each of the 2 classes are a separate .java file. Only the tester class has a main method.
/**
A simulated cash register that tracks the item count and
the total amount due.
*/
public class CashRegister
{
private int itemCount;
private double totalPrice;
/**
Constructs a cash register with cleared item count and total.
*/
public CashRegister()
{
itemCount =0;
totalPrice =0;
}
/**
Adds an item to this cash register.
@param price the price of this item
*/
public void addItem(double price)
{
itemCount++;
totalPrice = totalPrice + price;
}
/**
Gets the price of all items in the current sale.
@return the total amount
*/
public double getTotal()
{
return totalPrice;
}
/**
Gets the number of items in the current sale.
@return the item count
*/
public int getCount()
{
return itemCount;
}
/**
Clears the item count and the total.
*/
public void clear()
{
itemCount =0;
totalPrice =0;
}
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!