System.out.println("请输入一个数字:(范围是0-100)");Randompc_game=newRandom();intpc_num=pc_game.nextInt(101);//随机产生一个小于101的整数Scannerinput=newScanner(System.in);intcount=5;//猜的次数,可自定义while(count >0) { System.out.println("您有"+count+"次机会!"); count--; Syst...
1.int num = (int)(Math.random()*100+1);//随机得出一个1~100的数 2.用一个变量去接收玩家输入的数,例如int i;3.用if语句,当玩家输入的数与随机数相等时(i==num),则输出语句(恭喜你猜对了).4.用else写出猜错是的语句.大致思路就是这样.建议你自己去写,只有自己写过才会懂.如有不...