隨機生成乙個1~100的整數,使用者來猜數字,並給出提示,如果使用者輸入的不是數字,會提示輸入無效
**還可以簡化,但是沒必要。
// c#
using system;
using system.collections.generic;
using system.text;
public
void
guess
(int num)
catch
if(number >
100|| number <0)
throw
newargumentoutofrangeexception()
;//引數超出範圍報錯
while
(num <=
100)
else
次機會\n"
, count)
;else
if(number< num)
console.
writeline
("親。太小了哦! 您已經使用次機會\n"
, count);if
(count >=10)
//判斷玩家是否已輸入10次
console.
writeline
("請再次輸入猜測數值:");
number = convert.
toint32
(console.
readline()
);}}
}}}using system;
}}
C 迴圈案例結構 猜數字
includeusing namespace std includeint main system pause return 0 此案例中關於隨機數的有關說明如下 c 中沒有自帶的random函式,要實現隨機數的生成就需要使用rand 和srand 不過,由於rand 的內部實現是用線性同餘法做的,...
猜數字c 限制 猜數字小遊戲
週末看到的乙個猜數字小遊戲 挺有意思的 include include include using namespace std void start void getresults int i,j,life,maxrand char c void start life 5 玩家生命數 srand u...
C 猜數字遊戲
include include include linux下需包含 using namespace std int duibi 4 隨機數儲存 int sshu 4 輸入數儲存 int js 0 記錄猜對了幾個 int main 主函式 while js 4 cout 繼續輸入y,退出輸入n 請輸入...