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

资源简介

这是一款避开炸弹清除界面所有非炸弹物体的游戏

资源截图

代码片段和文件信息

#include 
#include 
#include 
#include 
#include 
#include 
#include 
using namespace std;
int hiscore = 10000000;
void gotoxy(int xint y){
    COORD pos = {x y};
    SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE)pos);
}
bool confirm() {
    char ch;
    while (true) {
        ch = getch();
        switch(ch) {
            case‘y‘:
                return true;
            case‘n‘:
                return false;
            default:
                break;
        }
    }
}
void ask_hint(){
    cout << “是否开启提示? (y/n)“ << endl;
    if(confirm()){
        system(“cls“);
        cout << “欢迎来到清理游戏!“ << endl;
        Sleep(1800);
        cout << “目标是清除棋盘上的所有字母(炸弹除外)。“ << endl;
   

评论

共有 条评论