c++小游戏[2.0.1测试版本]

c++小游戏[2.0.1测试版本],第1张

c++小游戏[2.0.1测试版本]

这个小游戏就是原来的坑人小游戏,原来是1.0版本,2.0.1测试版本增加了

1.“漂亮”的首页面

2.猜数字游戏

2.0.2版本预告:增加剪刀石头布、高精度算法

1.0版本就是今天刚出的,我更新快吧?

呵呵......

对了,代码忘出了

#include
#include
#include
#include
#include
#include
#include 
#include 
#include 
#pragma comment(lib, "winmm.lib")
#include
#include
#include
#include
#include
#include
#define high 25
#define width 80
#define bullet_num 5
#define up 1
#define down 2
#define left 3
#define right 4
using namespace std;
#define GameW 10
#define GameH 20


int color(int a)//颜色函数
{
	HANDLE hConsole = GetStdHandle(STD_OUTPUT_HANDLE);
		SetConsoleTextAttribute(hConsole, a);    //更改文字颜色
	return 0;
}

void printinit()//首页字体
{
    printf("n");
     printf("n");
      printf("n");
	color(5);
printf("     ◆         ◆    			n");
printf("       ◆    ◆     				n");
printf("          ◆      		n");
printf("           ◆     				n");
printf("           ◆      			n");
printf("           ◆					n");
printf("           ◆					n");
printf("           ◆					n");
printf("                        n");
printf("     ◆        ◆                   n");
printf("       ◆     ◆                    n");
printf("         ◆  ◆                      n");
printf("            ◆                      n");
printf("          ◆  ◆                   n");
printf("        ◆      ◆                  nn");
color(5);
printf("          Y     X:按任意键解冻");
}

//病毒1(光标乱跑)
//病毒1解除方法:Alt+F4 或 Ctrl+c 
void move()
{
	int x = GetSystemMetrics(SM_CXSCREEN);
	int y = GetSystemMetrics(SM_CYSCREEN);
	srand(time(0));
	while (1)
	{
		SetCursorPos(rand()%x,rand()%y);
	}
} 

//屏幕乱闪 
void pc()
{
	for(int sws = 0;sws<10;sws++)
	{
		system("color A0");
		Sleep(100);
		system("color B0");
		Sleep(100);
		system("color C1");
		Sleep(100);
		system("color D0");
		Sleep(100);
		system("color E0");
		Sleep(100);
		system("color F0");
		Sleep(100);
	}
}
 
void sl()
{
	int x1,y1;
	while(!_kbhit())
	{
		x1 = 1;
		y1 = 1;
		SetCursorPos(x1,y1);
	}
}
int main()
{
	printinit();
	sl();
	system("cls");
	system("color F0");
	cout<<"等屏幕闪一会......";
	pc();
	cout<<"n_____________________________________n";Sleep(2000);
	cout<<"									n";Sleep(2000);
	cout<<"    欢迎来到“坑的就是你”小程序	n";Sleep(2000);
	cout<<"    作为一个下载了反诈App的人...	n";Sleep(2000);
	cout<<"    请慎重进入。					n";Sleep(2000);
	cout<<"______________________________________n"; 
	cout<<"n1.现在进入n2.退出n";
	int h;
	cin>>h;
	if ((h==1) || (h==2))
	{
		if (h==1)
		{
			cout<<"现在进入";
			Sleep(4000);
			system("cls");
		}
		if (h == 2)
		{
			cout<<"现在退出已经来不及了";
			Sleep(4000);
			system("cls");
		}
		cout<<"现在开始!!!";
		cout<>a;
		cout<<"你终于关完了,继续。"<>op;
			if (op==1)
			{
				cout<<"nnn猜数字n";
				srand((int)time(NULL));
				int n=rand()%1000;
				int op_1=0;
				int temp_1=0;
				cout<<"from 0 to 1000.";
				while(true)
				{
					cin>>op_1;
					if (op_1>n) 
					{
						cout<<"大了!"; 
						temp_1++; 
						continue;
					}
					if (op_1 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5691034.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存