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.
乱数のグループの平均を見つける方法. たとえば、乱数を生成したい回数をユーザーに尋ね、ユーザーが 9 を入力し、乱数を で作成したとしrandom = randlist.nextInt(100) + 1;ます。数の合計を数で割って平均を求めることは知っていますが、この場合、ランダムな方法で生成された数をどのように見つけ、それらを足し合わせて 9 で割りますか?
random = randlist.nextInt(100) + 1;
と:
double avg = 0.0; for (int i = 0; i < nTimes; i++) { avg += randlist.nextInt(100) + 1; } avg /= nTimes; //This is the final average