This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Determines if the given amount is withdrawable which is defined as: | |
* amount must be more than or equal to zero. | |
* amount must be less than or equal to balance | |
* @author James W. Dunne | |
*/ | |
public boolean isWithdrawable(double amount) { | |
if (amount < 0 || amount > balance) { | |
return false | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<meta http-equiv="Content-type" content="text/html; charset=utf-8"> | |
<title>test</title> | |
<style type="text/css" media="screen"> | |
.subnav { | |
padding-left: 0; | |
margin-left: 0; | |
} |
NewerOlder