Java初学者です。
ランダムな値を生成しようとして、コンパイルしたら以下のようなエラーが発生しました。
CWH.java:4: エラー: シンボルを見つけられません Random rand = new Random(); ^ シンボル: クラス Random 場所: クラス CWH CWH.java:4: エラー: シンボルを見つけられません Random rand = new Random(); ^ シンボル: クラス Random 場所: クラス CWH
なぜなのかわかりません。よろしくお願いいたします。
以下がコードです。(コードは大学の講義の問題文をそのままmコピペしたものです。)
public class CWH { public static void main(String[] args) { Employee[] e; Random rand = new Random(); e = new Employee[rand.nextInt(500)]; for(int i = 0; i< e.length; i++) { switch (rand.nextInt(4)) { case 0: e[i] = new Regular(2000); break; case 1: e[i] = new PartTime(1000); break; case 2: e[i] = new Engineer(2500); break; case 3: e[i] = new Manager(2900); break; } e[i].generateNumberHours(); int salary = e[i].getDayPayment(); System.out.println("No,"+i+" : salary = "+salary); } /* your code */ } // the end of the main method } // the end of the class CalculatingWorkingHou
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/26 06:15