Search:

Type: Posts; User: xhunter

Search: Search took 0.12 seconds.

  1. Thread: HELP

    by xhunter
    Replies
    5
    Views
    1,609

    Re: HELP

    package Account;

    // Inputting and outputting floating-point numbers with Account objects.
    import java.util.Scanner;

    public class AccountTest {
    public static void main(String args[]) {...
  2. Thread: HELP

    by xhunter
    Replies
    5
    Views
    1,609

    Re: HELP

    Wouldn't it be enough to prompt the user that they're making either a deposit or a withdrawal? For example:

    1. Prompt to deposit to Account 1
    2. Prompt to deposit to Account 2
    3. Prompt to...
  3. Thread: HELP

    by xhunter
    Replies
    5
    Views
    1,609

    Re: HELP

    public void debit(double amount) {
    if (_balance < 0 || _balance < amount)
    System.out.println("Amount withdrawn is greater than current balance");
    else
    _balance -= amount;
    }

    You...
Results 1 to 3 of 3