黑马程序员技术交流社区

标题: 随机数 [打印本页]

作者: ruili    时间: 2015-8-30 22:33
标题: 随机数
import java.util.*;
class SuiJiShu {
        public static void main(String[] args) throws Exception{
                /*Random r = new Random();
                int number = r.nextInt(5);
                int number1 = r.nextInt(10);
                System.out.println(number1);
                System.out.println("你选择的排数是:" + number1);*/
                Scanner sc = new Scanner(System.in);
                System.out.println("游戏开始了");
                new Scanner(System.in).nextLine();
                while (true) {
                //new Scanner(System.in).nextLine();
                caoZuo();
                int a = sc.nextInt();
                if (a == 0) {
                        continue;
                }else {
                        break;
                }
                }
        }
        public static void caoZuo(){
                Random r = new Random();
                int number = r.nextInt(5);
                int number1 = r.nextInt(10);
                //System.out.println(number1);
                System.out.println("你选择的排数是: " + number1);
                System.out.println("你选的列数是: " + number);
       
        }

}



作者: 许庭洲    时间: 2016-2-1 08:51
值得学习ing!
作者: weidong10heima    时间: 2016-7-15 00:25
很有用的,值得学习,谢谢




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2