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; }
お役に立てれば。