gpt4 book ai didi

java - 循环,随机数生成器,然后检查器

转载 作者:行者123 更新时间:2023-12-02 05:21:29 25 4
gpt4 key购买 nike

试图进一步理解循环,我在网上发现了一些问题,我试图完成这些问题,但我陷入了倒数第二个问题。

原来的问题是:

loop4(int val)。此方法使用循环(for 或 while?)来执行以下操作。生成 1 到 10 之间(包括 1 和 10)的随机数 10 次,并统计 val 生成了多少次,然后将该数字打印出来。

到目前为止我已经做到了:

public int Loop4(int val){
for(int i = Math.random()*10; i<= 10; val!=0){
if (i == val) {
System.out.println(//I cannot for the life of me think of how I could constantly increment a +1 to this value because I only want to end up with 1 number in the end)
}
}
}

最佳答案

只需创建一个计数值并递增它即可。

public int Loop4(int val){
int count = 0;
for(int i = 0; i< 10; i++){
if ((int)(Math.random()*10) == val) {
count++;
}
}
System.out.println(count);
return count;
}

关于java - 循环,随机数生成器,然后检查器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26473548/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com