我试图增加和减去美元和美分,但我遇到了超过100美分和0美分以下的麻烦.我的代码适用于添加任何内容,直到我需要将100美分兑换成1美元.我在将代码写入代码时遇到了麻烦,但我明白将美分兑换成美元需要做些什么.
FYI这是一个类,这就是为什么我有静态方法加法/减法和类方法加法/减法的代码
我的代码:
package moneyapp;
public class MoneyApp {
public static void main(String[] args)
{
Money money1=new Money(99,99);
Money money6=new Money(100,00);
Money money7=new Money(0,1);
add(money1,money7);
System.out.println("The sum of "+money1+" and "+money7+" is "+money1.add(money7));
subtract(money6,money7);
System.out.println("The difference of "+money6+" and "+money7+" is "+money6.subtract(money7));
}
static Money add(Money money, Money money2)
{
int adddollars=money.dollars+money2.dollars;
int addcents=money.cents+money2.cents;
Money addmoney=new Money(adddollars,addcents);
System.out.println(addmoney.toString());
return addmoney;
}
static Money subtract(Money money, Money money2)
{
int subtractdollars=money.dollars-money2.dollars;
int subtractcents=money.cents-money2.cents;
Money subtractmoney=new Money(subtractdollars,subtractcents);
System.out.println(subtractmoney.toString());
return subtractmoney;
}
}
班级代码:
package moneyapp;
public class Money
{
int dollars;
int cents;
public Money()
{
dollars=0;
cents=0;
}
public Money(int dollar, int cent)
{
dollars=dollar;
cents=cent;
}
public Money(int dollar)
{
dollars=dollar;
cents=00;
}
public String toString()
{
if(cents<10)
{
return "$"+dollars+"."+"0"+cents;
}
else
{
return "$"+dollars+"."+cents;
}
}
public int getDollars()
{
return dollars;
}
public int getCents()
{
return cents;
}
public void setDollars(int dollars)
{
this.dollars=dollars;
}
public void setCents(int cents)
{
this.cents=cents;
}
public Money add(Money other)
{
int dol=dollars+other.dollars;
int cen=cents+other.cents;
Money answer=new Money(dol,cen);
return answer;
}
public Money subtract(Money other)
{
int dol=dollars-other.dollars;
int cen=cents-other.cents;
Money answer=new Money(dol,cen);
return answer;
}
}
解决方法:
请考虑一下:
public class Money {
private int m;
public Money(int m) {
this.m = m;
}
public int getDollars() {
return m / 100;
}
public int getCents() {
return m % 100;
}
public int get() {
return m;
}
public Money add(Money other) {
return new Money(m + other.get());
}
public Money subtract(Money other) {
return new Money(m - other.get());
}
}