gpt4 book ai didi

java - 如何在此代码中将 int 更改为 double ?

转载 作者:行者123 更新时间:2023-12-01 09:37:15 26 4
gpt4 key购买 nike

我正在尝试运行一个计算利息后余额的程序。我很容易让它运行:

public class bigjavach1p7balprob{
public static void main(String[] args){
double balance = 10000.0;
int year = 0;

while (balance < 20000){
year += 1;
double interest = balance * .05;
balance = balance + interest;

System.out.println("year " + year + ": " + balance);

}
}
}

但我想先将余额作为整数,然后在添加利息时将其转换为双倍。我有:

import java.util.*;

public class bigjavach1p7balprob{
public static void main(String[] args){
int balance = 10000;
int year = 0;

while (balance < 20000){
year += 1;
double interest = (double)balance * .05;
balance = Integer.parseInt(balance) + interest;

System.out.println("year " + year + ": " + balance);

}
}
}

这没有编译或运行。

最佳答案

编译错误的原因是 Integer.parseInt() 接受的是 String 而不是 int

如果您想将 balance 更改为整数(整数),您可以将其转换为 int(即使它是 double >):

balance = (int) (balance + interest)

但您实际上无法更改变量类型。

关于java - 如何在此代码中将 int 更改为 double ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38779817/

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