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.
我是学习java的新手,我正在创建一个水果机。
我希望老虎机号码在显示实际结果之前通过随机数旋转,从而产生旋转效果。
为此,我认为我需要创建一个随机数循环,其中每个新数字替换以前的数字,例如,如果生成的第一个随机数是“5”,下一个是“7”,则“7”将替换“5”显示时。我不知道如何也无法通过互联网研究找到答案。
这是一个生成 n 个随机数的循环:
int num = 0; for(int i = 0; i < n; i++) { num = Random.nextInt(9); doSomething(); }