我对这个编程很新,所以如果我犯了任何错误,请原谅我。 我正在使用NetBeans制作一个小程序,但现在我必须添加一些我真的不知道该怎么做的东西。
我做了一个小程序,你可以用来计算你的兴趣。 你有三个jTextField:
所以我还有一个jButton,它包含了我的大部分代码。
double inputNumberInterest = Double.parseDouble(interest.getText());
double inputNumberMoney = Double.parseDouble(money.getText());
int inputNumberYears = Integer.parseInt(years.getText());
DecimalFormat decimaal = new DecimalFormat("#,###.##");
double result = inputNumberMoney * Math.pow(inputNumberInterest / 100 + 1, inputNumberYears);
this.reply.setText("" + decimaal.format(result);
因此,此代码打印计算的最终结果。 现在我的问题是,我希望介于两者之间也可以在textArea中打印。例如,该程序的用户输入5,作为感兴趣的年份。我希望在textArea中打印第1,第2,第3和第4个。第五年,因为它现在已经打印在jTextField中了。
有谁知道怎么做?
我希望尽快收到你的来信。