Exercises
F.2 (Rectangle Class) Create a class Rectangle
with attributes length
and width
, each of which defaults to 1. Provide methods that calculate the rectangle’s perimeter and area. Provide set and get methods for both length
and width
. The set methods should verify that length
and width
are each floating-point numbers larger than 0.0 and less than 20.0. Write a program to test class Rectangle
.
F.3 (Savings Account Class) Create class SavingsAccount
. Use a static
variable annualInterestRate
to store the annual interest rate for all account holders. Each object of the class should contain a private
instance variable savingsBalance
indicating the amount the saver currently has on deposit. Provide method calculateMonthlyInterest
to calculate ...
Get Android™ How to Program, Second Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.