91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++編寫的一個簡單的猜數字游戲源碼

發布時間:2020-07-02 14:30:35 來源:網絡 閱讀:457 作者:Cool_Manone 欄目:開發技術

將開發過程比較重要的一些內容段做個記錄,下面內容段是關于C++編寫的一個簡單的猜數字游戲的內容。

#include <iostream>
#include <string>
#include <cstdlib>
#include <cctype>
#include <ctime>
#include <conio.h>

using namespace std;

int main ()
{
    int wins = 0;
    int losses = 0;
    int tries = 0;
    int guess;
    unsigned int number;
    char playAgain = 'Y';

    srand((unsigned)time(NULL));
    number = rand() % 101;

    while (toupper(playAgain) == 'Y')
    {
          while (tries < 21)
          {
                cout << "Enter a  number between 0 and 100:  ";
                cin >> guess;
                    if (guess == number)
                    {
                              wins = wins + 1;
                              break;
                    }
                    else
                    tries = tries + 1;
          }
               if (tries > 20)
                  {
                         losses = losses + 1;
                         cout << "Try Again  ";
                  }
                  else 
                  cout << "You won!  ";
               cout << "Want to play again?";
               cin >> playAgain;
    }

    cout << "Your total wins: " << wins;

    cout << "  Your total losses: " << losses;

getch();
return 0;
}
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

通山县| 正定县| 湘潭市| 措勤县| 镇远县| 溧水县| 鄂托克前旗| 平安县| 黄山市| 民丰县| 颍上县| 甘洛县| 元氏县| 丽水市| 中山市| 文安县| 遂川县| 新密市| 莱芜市| 拉萨市| 定日县| 轮台县| 西乌珠穆沁旗| 新兴县| 遂平县| 祁东县| 封丘县| 凤冈县| 汝城县| 澜沧| 兴海县| 新田县| 盘锦市| 宁陕县| 江北区| 鸡西市| 平罗县| 邹城市| 磐安县| 罗平县| 通榆县|