java中怎么實(shí)現(xiàn)一個(gè)數(shù)字猜拳小游戲,很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來(lái)學(xué)習(xí)下,希望你能有所收獲。
巴彥網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián)建站,巴彥網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為巴彥千余家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)營(yíng)銷網(wǎng)站建設(shè)要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的巴彥做網(wǎng)站的公司定做!
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("本次猜測(cè)活動(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)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對(duì)創(chuàng)新互聯(lián)的支持。
網(wǎng)站欄目:java中怎么實(shí)現(xiàn)一個(gè)數(shù)字猜拳小游戲
文章出自:http://m.newbst.com/article30/jhsjso.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供軟件開(kāi)發(fā)、Google、網(wǎng)站策劃、移動(dòng)網(wǎng)站建設(shè)、服務(wù)器托管、網(wǎng)站設(shè)計(jì)公司
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)