Account

Report a typo

You are given a class named Account. It has three fields: a long field balance, a string field ownerName, and a boolean flag locked.

Write getters and setters for all fields.

Write a program in Java 17
class Account {

private long balance;
private String ownerName;
private boolean locked;
}
___

Create a free account to access the full topic