ตัวอย่างโค้ดโปรแกรมการแรนดอม(random)ตัวเลข แรนดอมเลข 0-10 เลข 1-5 และตัวเลข 13-18
ตัวอย่างนี้เป็นตัวอย่างโค้ดการแรนดอมตัวเลข ซึ่งตัวอย่างนี้จะเป็นตัวอย่างการแรนดอมตัวเลข 0-10 ตัวเลข 1-5 และตัวเลข 13-18
การแรนดอมตัวเลข มีรูปแบบมาตรฐานดังนี้ Min + (int)(Math.random() * ((Max - Min) + 1))
ตัวอย่างโค้ดโปรแกรม
public class JavaCodeExam {
public static void main(String[] args) {
// standard random = Min + (int)(Math.random() * ((Max - Min) + 1))
// random 0 - 10
int numberLandom;
for (int i = 0; i < 100; i++) {
numberLandom = (int)(Math.random() * (11));
System.out.print(numberLandom);
System.out.print(",");
}
System.out.println();
// random 1 - 5
for (int i = 0; i < 100; i++) {
numberLandom = 1 + (int)(Math.random() * (5));
System.out.print(numberLandom);
System.out.print(",");
}
System.out.println();
// random 13 - 18
for (int i = 0; i < 100; i++) {
numberLandom = 13 + (int)(Math.random() * (6));
System.out.print(numberLandom);
System.out.print(",");
}
}
}
ไม่มีความคิดเห็น :
แสดงความคิดเห็น