Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Java

โปรแกรม Java เพื่อสร้างตัวเลขสุ่มภายในช่วงที่กำหนดและจัดเก็บในรายการ


ในการสร้างตัวเลขสุ่มในช่วงที่กำหนด รหัส Java มีดังต่อไปนี้ -

ตัวอย่าง

import java.util.Random;
import java.util.*;
public class Demo{
   public static void main(String args[]){
      Random my_rand = new Random();
      List my_list_1 = new ArrayList();
      int v_1 = my_rand.nextInt(1000);
      int v_2 = my_rand.nextInt(967);
      int v_3 = my_rand.nextInt(1050);
      int v_4 = my_rand.nextInt(10000);
      int v_5 = my_rand.nextInt(100);
      my_list_1.add(v_1);
      my_list_1.add(v_2);
      my_list_1.add(v_3);
      my_list_1.add(v_4);
      my_list_1.add(v_5);
      System.out.println("The random values in the list are : ");
      for(int i=0; i<my_list_1.size(); i++)
      System.out.print(my_list_1.get(i)+" ");
   }
}

ผลลัพธ์

The random values in the list are :
677 230 763 1695 48

คลาสชื่อ Demo มีฟังก์ชันหลัก ที่นี่ อินสแตนซ์สุ่มใหม่จะถูกสร้างขึ้นพร้อมกับรายการอาร์เรย์ใหม่ องค์ประกอบสุ่มถูกสร้างขึ้นและกำหนดให้กับตัวแปร ตัวแปรสุ่มเหล่านี้ถูกเพิ่มลงในรายการโดยใช้ฟังก์ชัน 'เพิ่ม' องค์ประกอบเหล่านี้จะแสดงบนคอนโซล