Open the class MakeChange in BlueJ and delete all the text
public class MakeChange
{
public static void main(String[] args)
{
int totalCents = 289;
// Write your program below this line
}
}
|
The variable totalCents contains the number of cents (= pennies)
You will be writing 4 different programs inside the main( ) method
|
|
|
|