二 c 猜數字遊戲

2021-08-11 09:26:21 字數 697 閱讀 8793

這個遊戲就是我預先想乙個0-99的數字,使用者來猜,我反饋給使用者你猜的大了還是你猜的小了或猜中了,聚餐的時候經常玩的一種遊戲,用**實現一下。

guess.h中

#ifndef guess_h

#define guess_h

class guess

;#endif // guess_h

guess.cpp

#include "guess.h"

#include "stdlib.h"

guess::guess()

int guess::compare(int input)

guess::~guess()

main中

#include #include "guess.h"

using namespace std;

void com(guess g);

int main()

{ guess g;

for(;;){

int comres,input;

cout<<"請猜數字"<>input;

comres=g.compare(input);

if(comres==0){

cout<<"恭喜你猜對了,你共猜了"<0){

cout<<"對不起,你的數小了"<

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 請輸入...

C 猜數字遊戲

效果如圖 private void button1 click object sender,eventargs e 產生乙個隨機數 private void button2 click object sender,eventargs e 顯示正確答案 private void button3 cli...

猜數字c 限制 猜數字小遊戲

週末看到的乙個猜數字小遊戲 挺有意思的 include include include using namespace std void start void getresults int i,j,life,maxrand char c void start life 5 玩家生命數 srand u...