這裏是我的代碼:如何從for循環中返回一個值?
import java.util.*;
public class factorialdisplay {
// Main Method. Prints out results of methods below.
public static void main(String[] args) {
Scanner console = new Scanner(System.in);
// Asks user for input
System.out.println("Please enter a number: ");
int n = console.nextInt();
for (int i = 0; i <= n; ++i) {
System.out.println(i + "! = " + factorial(n));
}
}
public static int factorial (int n) {
int f = 1;
for (int i = 1; i <= n; ++i) {
f *= i;
return f;
}
return f;
}
}
我想要得到的輸出:
1! = 1
2! = 2
3! = 6
4! = 24
5! = 120
但是當我運行的代碼,我得到這個:
0! = 1
1! = 1
2! = 1
3! = 1
4! = 1
5! = 1
我的問題是,我如何將for
循環的每次迭代的結果通過factorial
靜態方法返回到main
方法?
你真的想在這種情況下返回嗎? –
一個方法返回一次。 –
從'for'循環中刪除'return'語句。只是從'2'迭代到'n'並計算'factorial'並且一次迭代,簡單地返回'factorial' :-)爲什麼要做額外的乘法,任何乘以1的值總是相同的值! –