高难度的跑酷C++代码

原来我写的跑酷代码很简单,有很多人私聊我说不过瘾。

今天,它来了。

老样子,直接上源码。

main.cpp:

#undef UNICODE
#undef _UNICODE
#include <iostream>
#include <iomanip>
#include <string>
#include <cstdlib>
#include <ctime>
#include <windows.h>
#include <conio.h>
#include <fstream>
#include <stdio.h>
#include <algorithm>
#include <D:\b_game.h>
using namespace std;
using namespace _game;
using std::cout;
using std::cin;
const long long dts = 11;
long long wj1x, wj1y, wj2x, wj2y, wj3x, wj3y, wj4x, wj4y, cs = 0, dtbh, sy, runs, cgjd = 1, y_1x, y_1y, y_2x, y_2y, y_3x, y_3y, y_4x, y_4y;
cdhs cddx;
bool f = 1, t1 = 1, t2 = 1, t3 = 1, t4 = 1, cxjs = 1, hyflag = 1;
long long csx[dts + 1] = {
	0,
	18,
	18,
	18,
	14,
	2,
	3,
	2,
	3,
	18,
	2,
	18
};
long long csy[dts + 1] = {
	0,
	1,
	1,
	1,
	1,
	1,
	1,
	1,
	37,
	1,
	1,
	1
};
string dtm[dts + 1] = {
	"空地图",
	"新手练习",
	"蹦床天地",
	"信仰之跃",
	"生死双道",
	"天空跳床",
	"小心暗刺",
	"转来转去",
	"9 9 加 6",
	"天空尖刺",
	"天空之跃",
	"扭曲虫洞"
};
string dt[dts + 1][21] = {
	{
		"                                                                            ",//
		"                                                                            ",
		"                                                                            ",
		"                                                                            ",
		"                                                                            ",
		"                                                                            ",
		"                                                                            ",
		"                                                                            ",
		"                                                                            ",
		"                                                                            ",
		"                                                                            ",
		"                                                                            ",
		"                                                                            ",
		"                                                                            ",
		"                                                                            ",
		"                                                                            ",
		"                                                                            ",
		"                                                                            ",
		"                                                                            ",
		"                                                                            ",
		"                                                                            ",
	},
	{
		"                                                                            =",//
		"                                                                            =",
		"                                                                            =",
		"                                                                            =",
		"                                                                            =",
		"                                                                            =",
		"                                                                            =",
		"                                                                            =",
		"                                                                            =",
		"                                                                            =",
		"                                                                            =",
		"                                                                            =",
		"                                                                            =",
		"                                                                            =",
		"                                                          ===================",
		"                                                                            =",
		"                                                             ====           =",
		"                                                            =               =",
		"                       <     >                             =               $=",
		" ====     ====^^^^==================-               =======                 =",
		"                                                                            ="
	},
	{
		"                                                                            ",//
		"                             =                                <             ",
		"                             =                                <             ",
		"                             =                                <         $   ",
		"                             =                                <             ",
		"                             =                                <             ",
		"                     ---                                      <             ",
		"                             =                                              ",
		"                             ======-=====-===---=----=-=----========-=======",
		"                                                                            ",
		"                                                                            ",
		"               ---                                                          ",
		"                                                                            ",
		"                                                                            ",
		"                                                                            ",
		"                                                                            ",
		"                                                                            ",
		"                                                                            ",
		"                                                                            ",
		" ---------------------------------------------------------------------------",
		"                                                                            "
	},
	{
		"                                                                            ",//
		"                                                                            ",
		"                                                                            ",
		"  ==                                                                  ===   ",
		"  =                                                                     =   ",
		"  =                                                                     =   ",
		"  =                                                        $            =   ",
		"  =                                                                     =   ",
		"  =                                                                     = - ",
		"                                                                        =   ",
		" -==                                                                    =   ",
		"                                                                        =   ",
		"     ==                                                                 =   ",
		"                                                     ===                =-  ",
		"        ==                                                              =   ",
		"                                               ====                     =   ",
		"     ===                                                                =   ",
		"                                            ==                          =   ",
		"  ===                                  ==                                   ",
		" =                               ===                                 ======-",
		"                                                                            ",
	},
	{
		"                                                                            ",//
		"                                                                            ",
		"                                                                            ",
		"                                                                ==  ===  == ",
		"                                                        ===  ===          < ",
		"                                                  ==                      < ",
		"                                                                          < ",
		"                  ==                           ==^^^^^^^^^^^==            < ",
		"                         ======                                           < ",
		"              ==                       === =======                        < ",
		"               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^< ",
		"         ==                                                               < ",
		"                                                                          < ",
		"     ==                                                                   < ",
		"                                                 ^                         $",
		" ========>  <=== === === ==  = === = == === ==== ^ ====  === == = == = =====",
		"                                                                            ",
		"                                                                            ",
		"                                                                            ",
		"                                                                            ",
		"                                                                            ",
	},
	{
		"                                                                            ",//
		"   <                                                                        ",
		"   <                                                                        ",
		"   <                                                                        ",
		"   <                                                                        ",
		"   <                                                                        ",
		"   <                                            ---                         ",
		"   <                          ==                                            ",
		"   <                                                                        ",
		"   <           =                         ---                                ",
		"   <           =                                                            ",
		"   <           =                                                            ",
		"   <           =                                                            ",
		"   <           =                                                            ",
		"   <           =                                                            ",
		"   <           =         ---                                                ",
		"   <           =                                                           $",
		"               =                                                            ",
		" =====---------=^^^^^^^^^^^^^^^^^^^^^^
  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值