如何用java写出生成随机数的程序,要求是生成的随机数数值在9到15之间。数据类型为double

如题所述

package com.fendou.jdbc;

public class Random1 {

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
double i=0.0;
double b=0.0;
for( i=0;i<7;i++){

b=Math.random()*7+9;
System.out.println(b);

}
}

}
温馨提示:内容为网友见解,仅供参考
第1个回答  2011-05-01
楼上写的不用for循环既可以了
相似回答
大家正在搜