gpt4 book ai didi

java - 使用 While 循环

转载 作者:行者123 更新时间:2023-12-01 21:53:03 24 4
gpt4 key购买 nike

我在新的编程课上遇到了一个问题,而我只使用过 Python。这是我的问题:

Write a program that prints the balance of an account after the first, second, and third year. The account has an initial balance of $1,000 and earns 5 percent interest per year.

我知道我的数学可能有缺陷,但重要的是使用正确的格式并让我的程序运行。这是我的代码:

public class P14MIS207 {
public static void main(String[] args)
{
int year_one_balance, month, x;
year_one_balance = 1000;
interest = (.05/12) * (year_one_balance);
month = 0;
x = 36;
while(month <= x);
month++;
year_one_balance += interest;
System.out.println(year_one_balance);
// TODO code application logic here
}
}

最佳答案

您不需要在 while 关键字后使用分号,并且您希望将循环内部包裹在大括号中(与 Python 中使用空格的方式相反)。尝试:

while( month <= x){
month++;
year_one_balance += interest;
System.out.println(year_one_balance);
// TODO code application logic here
}

关于java - 使用 While 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34862327/

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