赞
踩
共51行代码
- /*********************************************************************
- 程序名:我的世界2D
- 版权:\
- 作者:yyh
- 日期: 2023-07-22 17:48
- 说明:我的世界2D
- *********************************************************************/
- #include <bits/stdc++.h>
- #include <conio.h>
- #include <stdlib.h>
- #include <string.h>
- #define KEY_DOWN(VK_NONAME) ((GetAsyncKeyState(VK_NONAME) & 0x8000) ? 1:0)
- using namespace std;
-
- void sqewn() {
- system("COLOR 3F");
- srand((unsigned)time(0));
- int b = 0;
- while (1) {
- if (KEY_DOWN('L')) {
- return;
- }
- if (KEY_DOWN('W')) {
- system("color 2");
- for (int f = 1; f <= 25; f++) {
- int b = rand() % 4;
- cout << "█O█O█\n";
- int a = rand() % 8;
- for (int b = 0; b <= a; b++) {
- cout << " ";
- }
-
- }
- }
-
- }
- }
-
- int main() {
- system("title Minecraft");
- system("COLOR 3F");
- MessageBox(NULL, "点击确定开始游戏……", "游戏主页", MB_OK);
- MessageBox(NULL,"注意事项:\n在任意界面(除游戏主页)中长按l键退出,短按l键暂停,按w键开始/继续游戏","游戏主页的消息",MB_OK);
- for (int a = 1; a <= 10; a++) {
- sqewn();
- }
-
-
- return 0;
- }
-
还是一样,exe下载链接放下面:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。