使用java怎么編寫一個猜數(shù)字游戲?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
成都創(chuàng)新互聯(lián)公司專注于企業(yè)成都營銷網(wǎng)站建設、網(wǎng)站重做改版、康馬網(wǎng)站定制設計、自適應品牌網(wǎng)站建設、成都h5網(wǎng)站建設、商城網(wǎng)站定制開發(fā)、集團公司官網(wǎng)建設、成都外貿(mào)網(wǎng)站建設公司、高端網(wǎng)站制作、響應式網(wǎng)頁設計等建站業(yè)務,價格優(yōu)惠性價比高,為康馬等各大城市提供網(wǎng)站開發(fā)制作服務。代碼如下:
public static void main(String[] args) { Random rand = new Random(); Scanner sc = new Scanner(System.in); System.out.println("----------猜數(shù)游戲----------"); System.out.println(" 1.開始游戲\n 2.游戲設置\n 3.退出游戲"); System.out.println("請輸入:"); int[] arr = new int[3]; for (int i = 1; i < arr.length; i++) { if (i < 4) { arr[i] = sc.nextInt(); } break; } int a = 0; //開始界面 for (int i = 1; i < arr.length; i++) { if (arr[i] == 1) { System.out.println("開始游戲"); a = 1; break; } else if (arr[i] == 2) { System.out.println("游戲設置"); a = 2; break; } else if (arr[i] == 3) { System.out.println("退出游戲"); a = 3; break; } else System.out.println("錯誤輸入"); } //設置界面 int max = 100; int min = 0; int cishu = 5; if (a == 2) { System.out.println("設置范圍"); System.out.println("最小值"); min = sc.nextInt(); System.out.println("較大值"); max = sc.nextInt(); System.out.println("設置猜的次數(shù)"); cishu = sc.nextInt(); //int randNum = rand.nextInt(max - min + 1) + min; System.out.println("設置范圍\n最小值為:" + min + "\n較大值為:" + max + "\n猜的次數(shù)為:" + cishu); a = 6; } //設置后回到開始界面 if (a==6){ System.out.println("----------猜數(shù)游戲----------"); System.out.println(" 1.開始游戲\n 2.游戲設置\n 3.退出游戲"); System.out.println("請輸入:"); for (int i = 1; i < arr.length; i++) { if (i < 4) { arr[i] = sc.nextInt(); } break; } //開始界面 for (int i = 1; i < arr.length; i++) { if (arr[i] == 1) { System.out.println("開始游戲"); a = 1; break; } else if (arr[i] == 2) { System.out.println("游戲設置"); a = 2; break; } else if (arr[i] == 3) { System.out.println("退出游戲"); a = 3; break; } else System.out.println("錯誤輸入"); } } //游戲界面 if (a == 1) { int randNum = rand.nextInt(max - min + 1) + min; System.out.println("我想了一個" + min + "到" + max + "的數(shù),請你來猜:\n你有" + cishu + "次機會"); int i = 1; for (; i <= cishu; ++i) { System.out.println("第" + i + "次:"); int guess = sc.nextInt(); if (i < cishu) { if (randNum >= guess) { if (randNum <= guess) { System.out.println("恭喜你猜對了!\n" + "該值是:" + randNum); break; } else System.out.println("你猜小了!"); } else System.out.println("你猜大了!"); } else System.out.println("你猜錯了!\n該值是:" + randNum); } } }
運行結果:
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)網(wǎng)站建設公司,的支持。
網(wǎng)站欄目:使用java怎么編寫一個猜數(shù)字游戲-創(chuàng)新互聯(lián)
本文鏈接:http://muchs.cn/article24/doddje.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供云服務器、微信公眾號、做網(wǎng)站、全網(wǎng)營銷推廣、用戶體驗、網(wǎng)站設計公司
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容