- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在帐户类中有以下方法
public void Transfer(int accountNo, double amount)
{
this.accountNo = accountNo;
double savingBal= this.getSavingBal();
if (this.savingBal > amount)
{this.savingBal=-amount;
this.checkingBal=+amount;
}
else
{
System.out.println("Insufficent fonds into savings account");
}
}
并将此代码放入主类中:
//
Account b = new Account();
//
System.out.println("Please mention the amout you whish to transfer and the account");
amount = s.nextDouble();
accountNo = s.nextInt();
b.Transfer(accountNo, amount);
但是打印到控制台的结果始终是:“资金不足”
请帮忙,
此致,
完整帐户类别
package atmsimulation;
import java.util.*;
public class Account {
private int accountNo;
private double checkingBal;
private double savingBal;
//Scanner sc = new Scanner(System.in);
Account ()
{
this.checkingBal=0;
this.savingBal=0;
this.accountNo=0;
}
public Account(int accountNo, double checkingBal, double savingBal) {
this.accountNo = accountNo;
this.checkingBal = checkingBal;
this.savingBal = savingBal;
}
//makes a @Payment
public void Payment(double amount)
{
this.checkingBal=-amount;
}
//makes a @Deposit
public void Deposit(double amount)
{
this.checkingBal=+amount;
}
//makeks a transfer from @savings into @checking account
public void Transfer(int accountNo, double amount)
{
this.accountNo = accountNo;
double savingBal= this.getSavingBal();
if (this.savingBal > amount)
{this.savingBal=-amount;
this.checkingBal=+amount;
}
else
{
System.out.println("Insufficent fonds into savings account");
}
}
public void setCheckingBal(double checkingBal) {
this.checkingBal = checkingBal;
}
public void setSavingBal(double savingBal) {
this.savingBal = savingBal;
}
public int getAccountNo() {
return accountNo;
}
public void setAccountNo(int accountNo) {
this.accountNo = accountNo;
}
public double getSavingBal() {
return this.savingBal;
}
public double getCheckingBal() {
return this.checkingBal;
}
}
最佳答案
this.savingBal=-amount;
应该是拼写错误
this.savingBal-=amount;
下一行有类似的拼写错误。这些可能会导致您的问题;如果不是,并且存在另一个问题,那么如果您解决了另一个问题,它们也会导致同样的问题。
关于Java实现储蓄账户到支票账户银行转账的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20315913/
stripe支付网关可以吗? 我们将使用 stripe 进行支付,首先我正在创建 token 。 $result = Stripe_Token::create(
最近一直在做一个有关信用卡系统的项目,所有很少出来给大家打招呼了,今天也该告一段了,本项目是基于python编程语言做的,此信用卡支持购物,转账和存取钱,下面小编把需求及实现思路大概分享一下,仅供参
1、要求 2、思路 1.购物类buy 接收 信用卡类 的信用卡可用可用余额, 返回消费金额 2.信用卡(ATM)类 接收上次操作后,信用卡可用余额,总欠款,剩余欠款,存款 其中:
您好,我正在将 MassPay Api 集成到我的项目中,我想通过集成在 codeigniter 上的 masspay api 发送批量付款。我为此创建了两个函数并获取相关 ID 和成功消息,但是当我
我是 MongoDB 新手我在银行做了一个简单的申请账户。一个账户可以给别人转账我这样设计帐户收集 account { name:A age: 24
我已经设置了一个支付门户,允许承包商将他们的账户信用余额转换为金钱(Cashout)并转入他们在 Paypal 上的账户。我的想法是将买家的电子邮件动态设置为承包商的 Paypal 电子邮件并运行快速
我是一名优秀的程序员,十分优秀!