Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
练习 Product1ToN(循环):编写一个名为 Product1ToN 的程序来计算整数 1 到 10 的乘积(即 1×2×3×...×10)。试着计算 1 到 11、1 到 12、1 到 13 和 1 到 14 的乘积。写下得到的乘积并解释结果。
我该怎么做,他们有多种方式吗?
尝试这个:
private int Product1ToN(int n){ int result = 1, ctr = 1; while(ctr <= n){ result *= ctr++; } return result; }
希望这可以帮助。