我必須創建一個程序,用1到100之間的50個隨機值填充數組,然後讓用戶輸入一個介於1和100之間的數字。程序將輸出該數字出現的次數在數組中。這是我到目前爲止,我不知道下一步要完成我的程序要做什麼。java中的隨機數組值
import java.util.*;
public class Occurences {
public static void main(String[] args)
{
//This program will generate an array with 50 random values
//This user will then input a number
//The program will then tell the user how many times their numbers appears
//Create array
int numbers[]= new int[50];
//Create a new scanner object
Scanner sc=new Scanner(System.in);
System.out.println("Please enter a number between 1 and 100");
int Usernum= sc.nextInt();
for (int i=0; i<numbers.length; i++)
{
numbers[i]=(int)(Math.random()*100+1);
}
}
}
創建一個新的循環,並檢查'userNum'是否等於'數字中的值[i]'如果這樣增加計數器 –