0


c++有趣代码(游戏)

(会更新哟,点个免费的赞赞支持一下,本文会综合一些其他博主的优质内容给大家放在一块来分享,请大家多多支持,如有侵权请私信我

1.文字小游戏

#include <iostream>
#include <algorithm>
#include <cstdlib>
#include <ctime>
#include <cstring>
#include <string>
#include <cstdio>
#define clear() cout << "\033c" << flush
using namespace std;
 
const int SIZE = 9;
int Queen[15][15]; 
// 值为0表示不在攻击范围内,可以放置新皇后;
// 1表示在攻击范围内,不可放置
// 9和-9表示皇后
 
// 游戏规则展示
void intro()
{
    cout << endl <<"                               生化危机 "<<endl<<endl<<"\n"<<endl;
    cout << "===============
标签: c++ 游戏程序

本文转载自: https://blog.csdn.net/2301_76570191/article/details/136063541
版权归原作者 爱内卷的学霸一枚 所有, 如有侵权,请联系我们删除。

“c++有趣代码(游戏)”的评论:

还没有评论