【发布时间】:2014-09-23 21:27:48
【问题描述】:
如何让这个程序打印出负值和正值,这样就会有从 -100 到 100 的随机数?
public class RandomInts {
/*
* This program makes 10 random integers and prints them out on the console window.
*/
public static void main(String[] args) {
int[] myArray;
myArray = new int[10];
for( int i = 0; i < myArray.length; i++ ){
myArray[i] = (int)(Math.random() * 100);
} // End of first for loop.
for(int i=0;i<10;i++){
System.out.println("My array is " + myArray[i]);
} // End of second for loop.
} // End of the main.
} // End of the class RandomInts.
【问题讨论】:
-
生成0到200之间的随机数,减去100。
-
因为
Math.random() < 1,(int)(Math.random() * 100)永远不会得到 100 -
看看stackoverflow.com/questions/5271598/…,这基本上是 JB Nizet 所解释的。