• 大小: 2.36KB
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-01-29
  • 语言: C/C++
  • 标签: 游戏  

资源简介

【实例简介】尽管并不是真的词……

资源截图

代码片段和文件信息

#include 
#include 
using namespace std;
int main(){
    srand(time(NULL));
    int n;
    char a[n];
    string chop;
    string qp;
    int life;
    bool p[26] = {false};
    cout << “欢迎来到猜词游戏!(虽然电脑给的不是真的词)“ << endl;
    cout << “选择模式 (1P / 2P)“ << endl;
    cin >> chop;
    if(chop == “2P“){
        cout << “1号玩家,请输入目标词“ << endl;
        cin >> qp;
        n = qp.size();
        cout << “请输入您想给对方的机会数“ << endl;
        cin >> life;
        for(int i = 0; i < n; i++){
            a[i] = qp[i];
        }
    }else{
        cout << “请输入你想猜的单词的长度 “ << endl;
        cin >> n;
        cout << “请输入你想要的机会数 “ << endl;
        cin >> life;
    }
    system(“cls“);
    bool rev[n] = {false};
    if(chop == “1P“){
        for(int i = 0; i < 

评论

共有 条评论