- public class L {
- /**
- * @param args
- */
- public static void main(String[] args) {
- System.out.println(Random ()*Random ());//调用两次生成随机数的方法,输出他们的积
- }
- /**
- * 生成两位数的方法
- * @return
- */
- public static int Random (){
- while(true){
- int a = (int)(Math.random()*100); //用random生成1-100的随机数,这里需要强转
- if (a >= 10 && a <= 99){ //加一个限定10-99之内才返回
- return a;
- }
- }
- }
- }
复制代码
|