gpt4 book ai didi

java - 我的 CS I 类(class)有什么问题吗?

转载 作者:行者123 更新时间:2023-12-01 10:14:32 25 4
gpt4 key购买 nike

我在 java 类程序的介绍中不断收到错误“')'预期”。

这段旨在代表银行帐户用户的代码有什么问题?为什么我会收到这些错误?我该如何解决这些问题?

任何帮助将不胜感激。

代码如下:

import java.util.*;
import java.text.DecimalFormat;

public class Customer
{
private long acctNum;
private String name;
private double balance = 0;

DecimalFormat df = new DecimalFormat("$0.00");

public Customer(long acctNum, String name)
{
this.acctNum = acctNum;
this.name = name;
this.balance = 0.00;
}

public void deposit(double in)
{
this.balance = this.balance + in;
}

public void withdraw(double out)
{
*if((this.balance - out) !>= 0.0)*
{
System.out.println("Invalid amount to withdraw.");
}
*else*
{
this.balance = this.balance - out;
}
}

public void calcInterest()
{
*if(this.balance !> 0.0)*
{
System.out.println("No interest added to an empty account.");
}
*else*
{
this.balance = (this.balance)*1.03;
}
}

public double getBalance()
{
return df.format(this.balance);
}

}

最佳答案

我注意到的一件事是,当 !>= 和 !> 等运算符不存在时,您会使用它们。如果您想说某事不大于或等于或不大于,请在条件前添加 NOT 运算符 (!)。例如,有

if(!(this.balance - out >= 0.0))

if(!(this.balance > 0.0))

而不是你以前拥有的。

关于java - 我的 CS I 类(class)有什么问题吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35977394/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com