Scanner in = new Scanner(System.in); System.out.println("猜1到10的號碼r"); String a = in.next(); int b = 0; while(true){ try { b = Integer.parseInt(a); if(b<=10){ break; }else{ System.out.println("猜1到10的號碼"); a=in.next(); } } catch (Exception e) { System.out.println("猜1到10的號碼r"); a=in.next(); } } int c=(int)(Math.random()*10); while(true){ if(b==c){ c=(int)(Math.random()*10); }else{ break; } } System.out.println("對不起你的答案是錯的,正確答案是:"+c); in.close(); }}這段代碼可以讓抽獎的用戶永遠(yuǎn)猜不到正確答案,因為我添加了一個整數(shù),然后我想寫一個辦法,做一個計算,怎么利用return得出我作弊的號碼?
java 怎么利用return?
慕移動2184654
2018-05-21 05:35:16