您好,登錄后才能下訂單哦!
java中怎么實(shí)現(xiàn)一個(gè)數(shù)字猜拳小游戲,很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
package guenum;import java.util.ArrayList;import java.util.Scanner;public class Demo {// private static Object list; public static void main(String ad[]) { System.out.println("-------------------------------------小游戲-------------------------------------"); System.out.println("-----------------------系統(tǒng)內(nèi)置了一個(gè)99到177之間的一個(gè)隨機(jī)數(shù)-----------------------"); int rm=(int) (Math.random()*78 +99); Scanner sc=new Scanner(System.in); int input_number; int n=0; int t=0; boolean value=false; int[] temp=new int[30]; while(!value) { System.out.print("輸入你所猜的數(shù)據(jù):"); try { input_number=sc.nextInt(); temp[n]=input_number; t=n; n++; if(input_number==rm) { value=true; }else if(input_number<rm) { System.out.println("小了,再猜!"); }else if(input_number>rm) { System.out.println("大了,再猜!"); } }catch(Exception e) { System.out.println(e); return; } } System.out.println("你總共用了"+n+ "次猜中!"); System.out.println("你所猜的數(shù)列如下"); System.out.print("{"); while(n--!=0) { System.out.print(temp[n]+"," ); } System.out.print("}"); System.out.println("\n"); System.out.println("本次猜測活動(dòng)評(píng)價(jià):"); if(t==1) { System.out.println("你太聰明了!"); }else if(2<=t && t<=5) { System.out.println("不錯(cuò),再接再厲!"); }else if(t>=6) { System.out.println("要努力??!"); } }}
看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝您對(duì)億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。