本帖最後由 李泳霖 於 2022-1-28 09:22 編輯
設計一猜數字遊戲, 猜一介於1~99間的數字,
此數字由電腦隨機亂數產生,
使用者可重覆猜測, 且範圍會越縮越小,
最後猜中後, 顯示使用者總共猜了幾次才猜中.
- import java.util.Scanner;
- public class Guess {
- public static void main(String[] args) {
- Scanner s=new Scanner(System.in);
- int target=(int)(Math.random()*99+1);
- int ans, a=1, b=99, n=0;
- while(true)
- {
- n++;
- System.out.print("猜一個"+a+"~"+b+"之間的數字: ");
- ans=s.nextInt();
- if(ans>target)
- {
- System.out.println("猜得太大了!");
- b=ans-1;
- }else if(ans<target)
- {
- System.out.println("猜得太小了!");
- a=ans+1;
- }else
- {
- System.out.println("恭喜你猜對了!");
- System.out.println("總共猜了"+n+"次!");
- break;
- }
- }
- }
- }
複製代碼 |