我需要编写一个方法,其中参数接受一个整数(在本例中为n),并将序列的前n项之和作为双值返回。所以说我把<code>分数(5)代码>输出将是
1++1/5,等于2.8333~(最终结果)
我现在拥有的是:
public static void main(String[] args) {
fractionSums(5);
}
public static void fractionSums(int n) {
Scanner console = new Scanner(System.in);
System.out.print("How many terms do you have? ");
int totalterms = console.nextInt();
}
我被困在这里,不知道如何做得更远,也不知道在哪里实施。你如何建议我继续做这件事。我必须编辑这个问题吗?