{"id":2003,"date":"2025-05-09T06:00:19","date_gmt":"2025-05-08T22:00:19","guid":{"rendered":"https:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/"},"modified":"2025-05-09T06:00:19","modified_gmt":"2025-05-08T22:00:19","slug":"c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88","status":"publish","type":"post","link":"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/","title":{"rendered":"c++\u63a7\u5236\u53f0\u53cc\u4eba\u683c\u6597\u5c0f\u6e38\u620f(\u6d4b\u8bd5\u7248)"},"content":{"rendered":"<div class=\"article_content clearfix\" id=\"article_content\">\n <link href=\"https:\/\/csdnimg.cn\/release\/blogv2\/dist\/mdeditor\/css\/editerView\/kdoc_html_views-1a98987dfd.css\" rel=\"stylesheet\"\/>\n <link href=\"https:\/\/csdnimg.cn\/release\/blogv2\/dist\/mdeditor\/css\/editerView\/ck_htmledit_views-704d5b9767.css\" rel=\"stylesheet\"\/>\n<div class=\"htmledit_views atom-one-light\" id=\"content_views\">\n<p>\n   \u55e8\u55e8\u55e8,\u53c8\u662f\u6211!\n  <\/p>\n<p>\n   \u6211\u53c8\u6765\u53d1\u535a\u5ba2\u5566!\n  <\/p>\n<p>\n   \u6700\u8fd1\u592a\u95f2\u4e86,\u53c8\u505a\u4e86\u4e2asmall\u6e38\u620f:\u5c0f\u4eba-\u683c\u6597(\u6d4b\u8bd5\u7248)\n  <\/p>\n<h2>\n   \u4e0a\u4ee3\u7801!<br \/>\n  <\/h2>\n<p>\n   \u8bb0\u5f97\u52a0\u4e0agamesio.h\u54e6\n  <\/p>\n<pre><code class=\"language-cpp\">#include&lt;cstring&gt;\n#include&lt;conio.h&gt;\n#include\"gamesio.h\"\n\/\/\u5b8f\u5b9a\u4e49\u4e00\u4e9b\u5e38\u91cf(\u53ef\u66f4\u6539)\n#define BULLETNUM 300\/\/\u5b50\u5f39\u6700\u5927\u6570\u91cf\n#define RUN 1\/\/\u4eba\u7269\u884c\u8d70\u901f\u5ea6\n#define BULLET_ 5\/\/\u5b50\u5f39\u5c04\u51fb\u95f4\u9694\n#define BULLETRUN 2\/\/\u5b50\u5f39\u901f\u5ea6\n#define BIGBULLET_TIME 2\/\/\u624b\u629b\u5f0f\u539f\u5b50\u5f39\u79fb\u52a8\u95f4\u9694\n#define JUMPHIGHT 6\/\/\u8df3\u8dc3\u9ad8\u5ea6 \nusing namespace std;\nusing namespace gio;\n\/\/\u7ed3\u6784\u4f53 \nstruct bullet{int x;int y;char l; char f;int z;};\nstruct player{int hp;int s1;int s2;int x;int y;bool jump;int ifjump;char f;\nfloat s1_wait;float s2_wait;bool s1_ok;bool s2_ok;bool ifdown;bool ifinvin;\nbool canwalk;float walk_wait;int dwontime;int invintime;bool revert;float reverttime;\nbool poison;float poisontime;int energy;};\n\n\/\/\u51fd\u6570 \nchar map[22][73],OLDMAP[22][73];\nvoid draw_map_delta(char a[22][73] ){\n\tfor(int i=0;i&lt;22;i++){\n\t\tif (strcmp(a[i],OLDMAP[i])!=0){\n\t\t\tgo(0,i);\n\t\t\tprintf(\"%s\",a[i]);\n\t\t}\n\t}\n\tfor(int i=0;i&lt;22;i++){for(int j=0;j&lt;73;j++){OLDMAP[i][j]=a[i][j];}}\t \n}\nvoid clear_map(char map[22][73]){\n\tfor(int i=0;i&lt;22;i++){for(int j=0;j&lt;72;j++){map[i][j]=' ';}map[i][72]=0;}\n}\nvoid add_line(char map[22][73]){\n\tfor(int i=0;i&lt;72;i++){map[20][i]='-';}\n}\nvoid add_wall(char map[22][73]){\n\tfor(int i=0;i&lt;72;i++){map[21][i]='#';map[0][i]='#';}\n\tfor(int i=0;i&lt;21;i++){map[i][0]='#';map[i][71]='#';}\n}\nplayer p2;\nplayer p1;\nbullet p1_b[BULLETNUM];\nbullet p2_b[BULLETNUM];\nvoid p1_s(int l_,float*w,float wait){\n\tint p1_ii=-1;\n\tfor(int i=0;i&lt;BULLETNUM;i++){\n\t\tif(p1_b[i].z==0){\n\t\t\tp1_ii=i;\n\t\t\tbreak;\n\t\t}\n\t}\n\tif(p1_ii&gt;=0){\n\t\tp1_b[p1_ii].l=l_;\n\t\tp1_b[p1_ii].z=1;\n\t\tp1_b[p1_ii].y=p1.y;\n\t\tif(p1.f=='l'){\n\t\t\tp1_b[p1_ii].x=p1.x-1;\n\t\t}else{\n\t\t\tp1_b[p1_ii].x=p1.x+1;\n\t\t}\n\t\tp1_b[p1_ii].f=p1.f;\n\t}\n\t*w=wait;\n}\nvoid p2_s(int l_,float*w,float wait){\n\tint p2_ii=-1;\n\tfor(int i=0;i&lt;BULLETNUM;i++){\n\t\tif(p2_b[i].z==0){\n\t\t\tp2_ii=i;\n\t\t\tbreak;\n\t\t}\n\t}\n\tif(p2_ii&gt;=0){\n\t\tp2_b[p2_ii].l=l_;\n\t\tp2_b[p2_ii].z=1;\n\t\tp2_b[p2_ii].y=p2.y;\n\t\tif(p2.f=='l'){\n\t\t\tp2_b[p2_ii].x=p2.x-1;\n\t\t}else{\n\t\t\tp2_b[p2_ii].x=p2.x+1;\n\t\t}\n\t\tp2_b[p2_ii].f=p2.f;\n\t}\n\t*w=wait;\n}\nint main(){\n\tsrand(time(0));\n\tint good_x;\n\tint good_y;\n\tbool good=false;\n\thide();\n\tint BIGbullet=0;\n\twindows_tle(\"\u5c0f\u4eba-\u683c\u6597(\u53cc\u4eba\u6e38\u620f)\");\n\t\/\/\u5f00\u59cb\u754c\u9762\n\twindows_size(40,15);\n\tint in=1;\n\twhile(true){\n\t\tsystem(\"cls\");\n\t\tgo(0,0);\n\t\tprintf(\"****************************************\\n\");\n\t\tgo(11,1);\n\t\tprintf(\"M A N - F I G H T\");\n\t\tif(in==1){\n\t\t\tgo(13,5);\n\t\t\tprintf(\"&gt;1.\u5f00\u59cb\u6e38\u620f&lt;\");\n\t\t\tgo(14,7);\n\t\t\tprintf(\"2.\u6e38\u620f\u89c4\u5219\");\n\t\t\tgo(14,9);\n\t\t\tprintf(\"3.\u9000\u51fa\u6e38\u620f\"); \n\t\t}else if(in==2){\n\t\t\tgo(14,5);\n\t\t\tprintf(\"1.\u5f00\u59cb\u6e38\u620f\");\n\t\t\tgo(13,7);\n\t\t\tprintf(\"&gt;2.\u6e38\u620f\u89c4\u5219&lt;\");\n\t\t\tgo(14,9);\n\t\t\tprintf(\"3.\u9000\u51fa\u6e38\u620f\"); \n\t\t}else if(in==3){\n\t\t\tgo(14,5);\n\t\t\tprintf(\"1.\u5f00\u59cb\u6e38\u620f\");\n\t\t\tgo(14,7);\n\t\t\tprintf(\"2.\u6e38\u620f\u89c4\u5219\");\n\t\t\tgo(13,9);\n\t\t\tprintf(\"&gt;3.\u9000\u51fa\u6e38\u620f&lt;\"); \n\t\t}\n\t\tgo(0,14);\n\t\tprintf(\"\u2191\u2193\u952e\u9009\u62e9,Enter\u952e\u786e\u5b9a\");\n\t\tgetch();\n\t\tif(GetAsyncKeyState(VK_UP)&amp;0x8000){\n\t\t\tin--;\n\t\t\tif(in==0){in=1;}\n\t\t}else if(GetAsyncKeyState(VK_DOWN)&amp;0x8000){\n\t\t\tin++;\n\t\t\tif(in==4){in=3;}\n\t\t}else if(GetAsyncKeyState(VK_RETURN)&amp;0x8000){\n\t\t\tif(in==1){\n\t\t\t\tbreak;\n\t\t\t}else if(in==2){\n\t\t\t\tMessageBox(0,\"\u8fd9\u662f\u4e00\u4e2a\u53cc\u4eba\u6e38\u620f\",\"\u6e38\u620f\u89c4\u5219\",MB_OK);\n\t\t\t\tMessageBox(0,\"p1\u662f\u4e00\u4e2a\u5b9e\u5fc3\u5c0f\u4eba\",\"\u6e38\u620f\u89c4\u5219\",MB_OK);\n\t\t\t\tMessageBox(0,\"p2\u662f\u4e00\u4e2a\u7a7a\u5fc3\u5c0f\u4eba\",\"\u6e38\u620f\u89c4\u5219\",MB_OK);\n\t\t\t\tMessageBox(0,\"p1\u7528wsad\u63a7\u5236\u5c0f\u4eba\",\"\u6e38\u620f\u89c4\u5219\",MB_OK);\n\t\t\t\tMessageBox(0,\"p2\u7528\u2191\u2193\u2190\u2192\u63a7\u5236\u5c0f\u4eba\",\"\u6e38\u620f\u89c4\u5219\",MB_OK);\n\t\t\t\tMessageBox(0,\"p1\u7528123\u952e\u653e\u6280\u80fd\",\"\u6e38\u620f\u89c4\u5219\",MB_OK);\n\t\t\t\tMessageBox(0,\"p2\u7528BNM\u952e\u653e\u6280\u80fd\",\"\u6e38\u620f\u89c4\u5219\",MB_OK);\n\t\t\t\tMessageBox(0,\"\u6309ESC\u952e\u9000\u51fa\u6e38\u620f\",\"\u6e38\u620f\u89c4\u5219\",MB_OK);\n\t\t\t}else if(in==3){\n\t\t\t\treturn 0;\n\t\t\t}\n\t\t}\n\t\tSleep(100); \n\t}\n\tint game=1;\n\twhile(true){\n\t\tsystem(\"cls\");\n\t\tgo(0,0);\n\t\tprintf(\"****************************************\\n\");\n\t\tgo(11,1);\n\t\tprintf(\"M A N - F I G H T\");\n\t\tif(in==1){\n\t\t\tgo(13,6);\n\t\t\tprintf(\"&gt;1.\u6a2a\u7248\u5bf9\u6218&lt;\");\n\t\t\tgo(14,8);\n\t\t\tprintf(\"2.\u5e73\u9762\u5bf9\u6218\");\n\t\t}else if(in==2){\n\t\t\tgo(14,6);\n\t\t\tprintf(\"1.\u6a2a\u7248\u5bf9\u6218\");\n\t\t\tgo(13,8);\n\t\t\tprintf(\"&gt;2.\u5e73\u9762\u5bf9\u6218&lt;\");\n\t\t}\n\t\tgo(0,14);\n\t\tprintf(\"\u2191\u2193\u952e\u9009\u62e9,Enter\u952e\u786e\u5b9a\");\n\t\tgetch();\n\t\tif(GetAsyncKeyState(VK_UP)&amp;0x8000){\n\t\t\tin--;\n\t\t\tif(in==0){in=1;}\n\t\t}else if(GetAsyncKeyState(VK_DOWN)&amp;0x8000){\n\t\t\tin++;\n\t\t\tif(in==3){in=2;}\n\t\t}else if(GetAsyncKeyState(VK_RETURN)&amp;0x8000){\n\t\t\tif(in==1){\n\t\t\t\tgame=1;\n\t\t\t}else if(in==2){\n\t\t\t\tgame=2;\n\t\t\t}\n\t\t\tbreak;\n\t\t}\n\t\tSleep(100); \n\t}\n\tif(game==1){\n\t\tint Bullet=3;\n\t\tchar p1_r;\n\t\tchar p2_r;\n\t\tp1.x=20;p1.y=10;p1.jump=false;p1.ifjump=JUMPHIGHT+20;p1.f='r';p1.hp=100;\n\t\tp2.x=52;p2.y=10;p2.jump=false;p2.ifjump=JUMPHIGHT+20;p2.f='l';p2.hp=100;\n\t\t\/\/\u9009\u62e9\u4eba\u7269\u754c\u9762\n\t\twindows_size(75,31);\n\t\tgo(0,0);\n\t\tprintf(\"p1\u9009\u62e9\u4eba\u7269:\\n\\n\");\n\t\tprintf(\"1.\u666e\u901a\u5c0f\u4eba 100\u8840\\n\u6280\u80fd1:\u666e\u901a\u5c04\u5b50\u5f39\\n\u6280\u80fd2:small\u70b8\u5f39(\u5411\u524d\u98de,\u76f4\u5230\u78b0\u5230\u654c\u4eba,\u4f24\u5bb37\u70b9,CD:3.0s)\\n\u6280\u80fd3:\u624b\u6254\u5f0f\\\"\u539f\u5b50\u5f39\\\"(\u53d1\u5c04\u4e00\u4e2a\u539f\u5b50\u5f39,\u4f24\u5bb3\u4e3a50,CD:15.0s)\\n\\n\");\n\t\tprintf(\"2.super\u5c0f\u4eba 70\u8840\\n\u6280\u80fd1:\u666e\u901a\u5c04\u5b50\u5f39\\n\u6280\u80fd2:super\u70b8\u5f39(\u5411\u524d\u98de,\u901f\u5ea6\u5feb,\u76f4\u5230\u78b0\u5230\u654c\u4eba,\u4f24\u5bb320\u70b9!CD:7.0s)\\n\u6280\u80fd3:super\u5149\u6ce2(\u53d1\u5c04\u4e00\u4e2a\u5149\u6ce2,\u4f24\u5bb3\u4e3a25,CD:10.0s)\\n\\n\");\n\t\tprintf(\"3.\u80d6\u80d6\u5c0f\u4eba 200\u8840\\n\u6280\u80fd1:\u666e\u901a\u5c04\u5b50\u5f39\\n\u6280\u80fd2:small\u7d2b\u7802\u65e0\u4eba\u673a(\u5411\u524d\u98de,\u76f4\u5230\u78b0\u5230\u654c\u4eba,\u4f24\u5bb32\u70b9,CD:3.0s)\\n\u6280\u80fd3:BOB(\u53d1\u5c04\u4e00\u4e2aB,\u4f24\u5bb3\u4e3a0,\u51fb\u4e2d\u654c\u4eba\u540e\u654c\u4eba\u65e0\u6cd5\u653b\u51fb,\u6301\u7eed3\u79d2,CD:5.0s)\\n\\n\");\n\t\tprintf(\"4.\u800d\u6280\u5c0f\u4eba 50\u8840\\n\u6280\u80fd1:\u666e\u901a\u5c04\u5b50\u5f39\\n\u6280\u80fd2:\u8eb2\u95ea\u65f6\u95f4!(\u654c\u4eba\u7684\u653b\u51fb\u5bf9\u4f60\u65e0\u6548,\u6301\u7eed3\u79d2,CD:6.0s)\\n\u6280\u80fd3:\u7ffb\u6eda(\u5411\u524d\u6eda\u52a810\u683c,CD:2.0s)\\n\\n\");\n\t\tprintf(\"5.\u6587\u660e\u5c0f\u4eba 65\u8840\\n\u6280\u80fd1:\u666e\u901a\u5c04\u5b50\u5f39\\n\u6280\u80fd2:\u53e3\u5410\u82ac\u82b3(\u5c04\u51fa\u4e00\u4e2a\u901f\u5ea6\u6781\u5feb\u7684!,\u4f24\u5bb35,CD:4.0s)\\n\u6280\u80fd3:\u6781\u5feb\u901f\u53e3\u5410\u82ac\u82b3(\u53d1\u5c04\u4e00\u4e2a@,\u51fb\u4e2d\u654c\u4eba\u540e\u4f7f\u654c\u4eba\u884c\u52a8\u7ffb\u8f6c,\u6301\u7eed5\u79d2,CD:8.0s)\\n\\n\");\n\t\tprintf(\"6.\u9b54\u6cd5\u5c0f\u4eba 60\u8840\\n\u6280\u80fd1:\u666e\u901a\u5c04\u5b50\u5f39\\n\u6280\u80fd2:\u8d85\u7ea7\u5149\u7ebf(\u5c04\u51fa\u4e00\u4e2a\u6fc0\u5149,\u4f24\u5bb315,CD:6.0s)\\n\u6280\u80fd3:\u5267\u6bd2\u8bc5\u5492(\u53d1\u5c04\u4e00\u4e2a&amp;,\u51fb\u4e2d\u654c\u4eba\u540e\u4f7f\u654c\u4eba\u6301\u7eed\u6263\u8840,\u6301\u7eed0.5\u79d2,CD:6.0s)\");\n\t\tp1_r=getch();\n\t\tif(p1_r=='1'){\n\t\t\tp1.hp=100;\n\t\t\tp1.s1=1;\/\/small\u70b8\u5f39 \n\t\t\tp1.s1_wait=\n\t\t\tp1.s2=1;\/\/\u6fc0\u5149\u6ce2\u70b8\u5f39 \n\t\t}else if(p1_r=='2'){\n\t\t\tp1.hp=70;\n\t\t\tp1.s1=2;\/\/super\u70b8\u5f39 \n\t\t\tp1.s2=2;\/\/super\u70b8\u5f39 \n\t\t}else if(p1_r=='3'){\n\t\t\tp1.hp=200;\n\t\t\tp1.s1=3;\/\/\u7d2b\u7802\u65e0\u4eba\u673a \n\t\t\tp1.s2=3;\/\/BOB \n\t\t}else if(p1_r=='4'){\n\t\t\tp1.hp=50;\n\t\t\tp1.s1=4;\/\/\u8eb2\u95ea\u65f6\u95f4 \n\t\t\tp1.s2=4;\/\/\u7ffb\u6eda \n\t\t}else if(p1_r=='5'){\n\t\t\tp1.hp=65;\n\t\t\tp1.s1=5;\/\/\u53e3\u5410\u82ac\u82b3 \n\t\t\tp1.s2=5;\/\/\u6781\u5feb\u53e3\u5410\u82ac\u82b3 \n\t\t}else if(p1_r=='6'){\n\t\t\tp1.hp=60;\n\t\t\tp1.s1=6;\/\/\u53e3\u5410\u82ac\u82b3 \n\t\t\tp1.s2=6;\/\/\u6781\u5feb\u53e3\u5410\u82ac\u82b3 \n\t\t}\n\t\tsystem(\"cls\");\n\t\tgo(0,0);\n\t\tprintf(\"p2\u9009\u62e9\u4eba\u7269:\\n\\n\");\n\t\tprintf(\"1.\u666e\u901a\u5c0f\u4eba 100\u8840\\n\u6280\u80fd1:\u666e\u901a\u5c04\u5b50\u5f39\\n\u6280\u80fd2:small\u70b8\u5f39(\u5411\u524d\u98de,\u76f4\u5230\u78b0\u5230\u654c\u4eba,\u4f24\u5bb37\u70b9,CD:3.0s)\\n\u6280\u80fd3:\u624b\u6254\u5f0f\\\"\u539f\u5b50\u5f39\\\"(\u53d1\u5c04\u4e00\u4e2a\u539f\u5b50\u5f39,\u4f24\u5bb3\u4e3a50,CD:15.0s)\\n\\n\");\n\t\tprintf(\"2.super\u5c0f\u4eba 70\u8840\\n\u6280\u80fd1:\u666e\u901a\u5c04\u5b50\u5f39\\n\u6280\u80fd2:super\u70b8\u5f39(\u5411\u524d\u98de,\u901f\u5ea6\u5feb,\u76f4\u5230\u78b0\u5230\u654c\u4eba,\u4f24\u5bb320\u70b9!CD:7.0s)\\n\u6280\u80fd3:super\u5149\u6ce2(\u53d1\u5c04\u4e00\u4e2a\u5149\u6ce2,\u4f24\u5bb3\u4e3a25,CD:10.0s)\\n\\n\");\n\t\tprintf(\"3.\u80d6\u80d6\u5c0f\u4eba 200\u8840\\n\u6280\u80fd1:\u666e\u901a\u5c04\u5b50\u5f39\\n\u6280\u80fd2:small\u7d2b\u7802\u65e0\u4eba\u673a(\u5411\u524d\u98de,\u76f4\u5230\u78b0\u5230\u654c\u4eba,\u4f24\u5bb32\u70b9,CD:3.0s)\\n\u6280\u80fd3:BOB(\u53d1\u5c04\u4e00\u4e2aB,\u4f24\u5bb3\u4e3a0,\u51fb\u4e2d\u654c\u4eba\u540e\u654c\u4eba\u65e0\u6cd5\u653b\u51fb,\u6301\u7eed3\u79d2,CD:5.0s)\\n\\n\");\n\t\tprintf(\"4.\u800d\u6280\u5c0f\u4eba 50\u8840\\n\u6280\u80fd1:\u666e\u901a\u5c04\u5b50\u5f39\\n\u6280\u80fd2:\u8eb2\u95ea\u65f6\u95f4!(\u654c\u4eba\u7684\u653b\u51fb\u5bf9\u4f60\u65e0\u6548,\u6301\u7eed2\u79d2,CD:6.0s)\\n\u6280\u80fd3:\u7ffb\u6eda(\u5411\u524d\u6eda\u52a810\u683c,CD:2.0s)\\n\\n\");\n\t\tprintf(\"5.\u6587\u660e\u5c0f\u4eba 65\u8840\\n\u6280\u80fd1:\u666e\u901a\u5c04\u5b50\u5f39\\n\u6280\u80fd2:\u53e3\u5410\u82ac\u82b3(\u5c04\u51fa\u4e00\u4e2a\u901f\u5ea6\u6781\u5feb\u7684!,\u4f24\u5bb35,CD:4.0s)\\n\u6280\u80fd3:\u6781\u5feb\u901f\u53e3\u5410\u82ac\u82b3(\u53d1\u5c04\u4e00\u4e2a@,\u51fb\u4e2d\u654c\u4eba\u540e\u4f7f\u654c\u4eba\u884c\u52a8\u7ffb\u8f6c,\u6301\u7eed5\u79d2,CD:8.0s)\\n\\n\");\n\t\tprintf(\"6.\u9b54\u6cd5\u5c0f\u4eba 60\u8840\\n\u6280\u80fd1:\u666e\u901a\u5c04\u5b50\u5f39\\n\u6280\u80fd2:\u8d85\u7ea7\u5149\u7ebf(\u5c04\u51fa\u4e00\u4e2a\u6fc0\u5149,\u4f24\u5bb315,CD:6.0s)\\n\u6280\u80fd3:\u5267\u6bd2\u8bc5\u5492(\u53d1\u5c04\u4e00\u4e2a&amp;,\u51fb\u4e2d\u654c\u4eba\u540e\u4f7f\u654c\u4eba\u6301\u7eed\u6263\u8840,\u6301\u7eed0.5\u79d2,CD:6.0s)\");\n\t\tp2_r=getch();\n\t\tif(p2_r=='1'){\n\t\t\tp2.hp=100;\n\t\t\tp2.s1=1;\/\/small\u70b8\u5f39 \n\t\t\tp2.s2=1;\/\/\u624b\u629b\u5f0f\u539f\u5b50\u5f39 \n\t\t}else if(p2_r=='2'){\n\t\t\tp2.hp=70;\n\t\t\tp2.s1=2;\/\/super\u70b8\u5f39 \n\t\t\tp2.s2=2;\/\/super\u5149\u6ce2 \n\t\t}else if(p2_r=='3'){\n\t\t\tp2.hp=200;\n\t\t\tp2.s1=3;\/\/\u7d2b\u7802\u65e0\u4eba\u673a \n\t\t\tp2.s2=3;\/\/BOB \n\t\t}else if(p2_r=='4'){\n\t\t\tp2.hp=50;\n\t\t\tp2.s1=4;\/\/\u8eb2\u95ea\u65f6\u95f4 \n\t\t\tp2.s2=4;\/\/\u7ffb\u6eda \n\t\t}else if(p2_r=='5'){\n\t\t\tp2.hp=65;\n\t\t\tp2.s1=5;\/\/\u53e3\u5410\u82ac\u82b3 \n\t\t\tp2.s2=5;\/\/\u6781\u5feb\u53e3\u5410\u82ac\u82b3 \n\t\t}else if(p2_r=='6'){\n\t\t\tp2.hp=60;\n\t\t\tp2.s1=6;\/\/\u53e3\u5410\u82ac\u82b3 \n\t\t\tp2.s2=6;\/\/\u6781\u5feb\u53e3\u5410\u82ac\u82b3 \n\t\t}\n\t\t\n\t\tfor(int i=0;i&lt;BULLETNUM;i++){\n\t\t\tp1_b[i].l=0;\n\t\t\tp2_b[i].l=0;\n\t\t} \n\t\tcls();\n\t\tp1.x=20;p1.y=10;p1.jump=false;p1.ifjump=11;p1.f='r';p1.s1_ok=true;p1.s1_wait=0.0;p1.s2_ok=true;p1.s2_wait=0.0;\n\t\tp2.x=52;p2.y=10;p2.jump=false;p2.ifjump=11;p2.f='l';p2.s1_ok=true;p2.s1_wait=0.0;p2.s2_ok=true;p2.s2_wait=0.0;\n\t\tclear_map(OLDMAP);\n\t\twindows_size(73,22);\n\t\tif(good){\n\t\t\tmap[good_y][good_x]='?';\n\t\t}\n\t\tint ifgood=rand()%6+1;\n\t\twhile(true){\n\t\t\tclear_map(map); \/\/\u6e05\u7a7a\u4e3a\u5168\u7a7a\u683c \n\t\t\tadd_line(map);\/\/\u52a0\u5730\u5e73\u7ebf \n\t\t\n\t\t\tif (p1.x&gt;70) p1.x=70;\n\t\t\tif (p2.x&gt;70) p2.x=70;\n\t\t\tif (p1.x&lt;0) p1.x=0;\n\t\t\tif (p2.x&lt;0) p2.x=0;\n\t\t\t\/\/\u66f4\u6539\u5730\u56fe \n\t\t\tif(!p1.revert &amp;&amp; !p1.poison){\n\t\t\t\tif(!p1.ifdown){map[p1.y][p1.x]=1;if(p1.f=='l'){map[p1.y+1][p1.x]=17;}else{map[p1.y+1][p1.x]=16;}}\n\t\t\t\telse{map[p1.y][p1.x]=1;}\n\t\t\t}else if(p1.revert){\n\t\t\t\tif(!p1.ifdown){map[p1.y][p1.x]='@';if(p1.f=='l'){map[p1.y+1][p1.x]=17;}else{map[p1.y+1][p1.x]=16;}}\n\t\t\t\telse{map[p1.y][p1.x]=1;}\n\t\t\t}else{\n\t\t\t\tif(!p1.ifdown){map[p1.y][p1.x]='*';if(p1.f=='l'){map[p1.y+1][p1.x]=17;}else{map[p1.y+1][p1.x]=16;}}\n\t\t\t\telse{map[p1.y][p1.x]=1;}\n\t\t\t} \n\t\t\t\n\t\t\tif(!p2.revert &amp;&amp; !p2.poison){\n\t\t\t\tif(!p2.ifdown){map[p2.y][p2.x]=2;if(p2.f=='l'){map[p2.y+1][p2.x]=17;}else{map[p2.y+1][p2.x]=16;}}\n\t\t\t\telse{map[p2.y][p2.x]=2;}\n\t\t\t}else if(p2.revert){\n\t\t\t\tif(!p2.ifdown){map[p2.y][p2.x]='@';if(p2.f=='l'){map[p2.y+1][p2.x]=17;}else{map[p2.y+1][p2.x]=16;}}\n\t\t\t\telse{map[p2.y][p2.x]=2;}\n\t\t\t}else{\n\t\t\t\tif(!p2.ifdown){map[p2.y][p2.x]='*';if(p2.f=='l'){map[p2.y+1][p2.x]=17;}else{map[p2.y+1][p2.x]=16;}}\n\t\t\t\telse{map[p2.y][p2.x]=2;}\n\t\t\t}\n\t\t\t\n\t\t\tfor(int i=0;i&lt;BULLETNUM;i++){\n\t\t\t\tif(p1_b[i].z==1){\n\t\t\t\t\tif(p1_b[i].l==0){\n\t\t\t\t\t\tif(p1_b[i].f=='l'){map[p1_b[i].y][p1_b[i].x]='(';}\n\t\t\t\t\t\telse{map[p1_b[i].y][p1_b[i].x]=')';}\n\t\t\t\t\t}else if(p1_b[i].l==1){map[p1_b[i].y][p1_b[i].x]='#';}\n\t\t\t\t\telse if(p1_b[i].l==2){map[p1_b[i].y][p1_b[i].x]='%';}\n\t\t\t\t\telse if(p1_b[i].l==3){map[p1_b[i].y][p1_b[i].x]='^';}\n\t\t\t\t\telse if(p1_b[i].l==4){\n\t\t\t\t\t\tif(p1_b[i].f=='l'){map[p1_b[i].y][p1_b[i].x]='[';}\n\t\t\t\t\t\telse{map[p1_b[i].y][p1_b[i].x]=']';}\n\t\t\t\t\t}else if(p1_b[i].l==5){map[p1_b[i].y][p1_b[i].x]='*';}\n\t\t\t\t\telse if(p1_b[i].l==6){map[p1_b[i].y][p1_b[i].x]='B';}\n\t\t\t\t\telse if(p1_b[i].l==7){map[p1_b[i].y][p1_b[i].x]='!';}\n\t\t\t\t\telse if(p1_b[i].l==8){map[p1_b[i].y][p1_b[i].x]='@';}\n\t\t\t\t\telse if(p1_b[i].l==9){map[p1_b[i].y][p1_b[i].x]='=';}\n\t\t\t\t\telse if(p1_b[i].l==10){map[p1_b[i].y][p1_b[i].x]='&amp;';}\n\t\t\t\t}\n\t\t\t} \n\t\t\tfor(int i=0;i&lt;BULLETNUM;i++){\n\t\t\t\tif(p2_b[i].z==1){\n\t\t\t\t\tif(p2_b[i].l==0){\n\t\t\t\t\t\tif(p2_b[i].f=='l'){map[p2_b[i].y][p2_b[i].x]='{';}\n\t\t\t\t\t\telse{map[p2_b[i].y][p2_b[i].x]='}';}\n\t\t\t\t\t}else if(p2_b[i].l==1){map[p2_b[i].y][p2_b[i].x]='#';}\n\t\t\t\t\telse if(p2_b[i].l==2){map[p2_b[i].y][p2_b[i].x]='%';}\n\t\t\t\t\telse if(p2_b[i].l==3){map[p2_b[i].y][p2_b[i].x]='^';}\n\t\t\t\t\telse if(p2_b[i].l==4){\n\t\t\t\t\t\tif(p2_b[i].f=='l'){map[p2_b[i].y][p2_b[i].x]='[';}\n\t\t\t\t\t\telse{map[p2_b[i].y][p2_b[i].x]=']';}\n\t\t\t\t\t}else if(p2_b[i].l==5){map[p2_b[i].y][p2_b[i].x]='*';}\n\t\t\t\t\telse if(p2_b[i].l==6){map[p2_b[i].y][p2_b[i].x]='B';}\n\t\t\t\t\telse if(p2_b[i].l==7){map[p2_b[i].y][p2_b[i].x]='!';}\n\t\t\t\t\telse if(p2_b[i].l==8){map[p2_b[i].y][p2_b[i].x]='@';}\n\t\t\t\t\telse if(p2_b[i].l==9){map[p2_b[i].y][p2_b[i].x]='=';}\n\t\t\t\t\telse if(p2_b[i].l==10){map[p2_b[i].y][p2_b[i].x]='&amp;';}\n\t\t\t\t}\n\t\t\t} \n\t\t\tif(p1.dwontime&gt;5 &amp;&amp; p1.ifdown){\n\t\t\t\tp1.ifdown=false;\n\t\t\t\tp1.y--;\n\t\t\t}\n\t\t\tif(p2.dwontime&gt;5 &amp;&amp; p2.ifdown){\n\t\t\t\tp2.ifdown=false;\n\t\t\t\tp2.y--;\n\t\t\t}\n\t\t\tif(p1.reverttime&gt;50){\n\t\t\t\tp1.revert=false;\n\t\t\t}\n\t\t\tif(p2.reverttime&gt;50){\n\t\t\t\tp2.revert=false;\n\t\t\t}\n\t\t\tdraw_map_delta(map);\/\/\u5bf9\u6bd4 map \u548c OLDMAP\uff0c\u6709\u5dee\u5f02\u7684\u884c\u624d\u91cd\u65b0\u6253\u5370\u753b \uff0c\u753b\u5b8cmap =&gt; OLDMAP \n\t\t\tgo(22,0);\n\t\t\tprintf(\"p1\u8840\u91cf:%d p2\u8840\u91cf:%d \",p1.hp,p2.hp);\n\t\t\t\/\/\u73a9\u5bb6\u6b7b\u4ea1\n\t\t\tif(p1.hp&lt;=0){\n\t\t\t\tMessageBox(0,\"p2\u73a9\u5bb6\u80dc\u5229!!\",\"\u63d0\u793a\",MB_OK);\n\t\t\t\treturn 0;\n\t\t\t} \n\t\t\tif(p2.hp&lt;=0){\n\t\t\t\tMessageBox(0,\"p1\u73a9\u5bb6\u80dc\u5229!!\",\"\u63d0\u793a\",MB_OK);\n\t\t\t\treturn 0;\n\t\t\t}\n\t\t\tgo(1,1);\n\t\t\tprintf(\"p1\u6280\u80fd2\u51b7\u5374:%.1f \",p1.s1_wait);\n\t\t\tprintf(\"p1\u6280\u80fd3\u51b7\u5374:%.1f     \",p1.s2_wait);\n\t\t\tprintf(\"p2\u6280\u80fd2\u51b7\u5374:%.1f \",p2.s1_wait);\n\t\t\tprintf(\"p2\u6280\u80fd3\u51b7\u5374:%.1f\",p2.s2_wait);\n\t\t\tSleep(50);\n\t\t\t\/\/\u6280\u80fdCD\u51b7\u5374\n\t\t\tif(p1.s1_wait&gt;0.0){p1.s1_wait-=0.05;p1.s1_ok=false;}\n\t\t\telse{p1.s1_ok=true;}\n\t\t\tif(p1.s2_wait&gt;0.0){p1.s2_wait-=0.05;p1.s2_ok=false;} \n\t\t\telse{p1.s2_ok=true;}\n\t\t\t\n\t\t\tif(p2.s1_wait&gt;0.0){p2.s1_wait-=0.05;p2.s1_ok=false;}\n\t\t\telse{p2.s1_ok=true;}\n\t\t\tif(p2.s2_wait&gt;0.0){p2.s2_wait-=0.05;p2.s2_ok=false;} \n\t\t\telse{p2.s2_ok=true;}\n\t\t\t\/\/BOB\u7684\u4e0d\u53ef\u79fb\u52a8\n\t\t\tif(p1.walk_wait&gt;0.0){p1.walk_wait-=0.05;p1.canwalk=false;}\n\t\t\telse{p1.canwalk=true;}\n\t\t\tif(p2.walk_wait&gt;0.0){p2.walk_wait-=0.05;p2.canwalk=false;} \n\t\t\telse{p2.canwalk=true;}\n\t\t\t\/\/\u4e2d\u6bd2\n\t\t\tif(p1.poisontime&gt;0.0){p1.poisontime-=0.05;p1.hp-=1;p1.poison=true;}\n\t\t\telse{p1.poison=false;}\n\t\t\tif(p2.poisontime&gt;0.0){p2.poisontime-=0.05;p2.hp-=1;p2.poison=true;} \n\t\t\telse{p2.poison=false;}\n\t\t\t\/\/\u5b50\u5f39\u79fb\u52a8\n\t\t\tfor(int i=0;i&lt;BULLETNUM;i++){\n\t\t\t\tif(p1_b[i].z==1){\n\t\t\t\t\tif(p1_b[i].l==0){\n\t\t\t\t\t\tif(p1_b[i].f=='l'){p1_b[i].x-=BULLETRUN;}\n\t\t\t\t\t\telse{p1_b[i].x+=BULLETRUN;}\n\t\t\t\t\t}else if(p1_b[i].l==1){\n\t\t\t\t\t\tif(p1_b[i].f=='l'){p1_b[i].x--;}\n\t\t\t\t\t\telse{p1_b[i].x++;}\n\t\t\t\t\t}else if(p1_b[i].l==2 &amp;&amp; BIGbullet%BIGBULLET_TIME==0){\n\t\t\t\t\t\tif(p1_b[i].f=='l'){p1_b[i].x--;}\n\t\t\t\t\t\telse{p1_b[i].x++;}\n\t\t\t\t\t}else if(p1_b[i].l==3){\n\t\t\t\t\t\tif(p1_b[i].f=='l'){p1_b[i].x--;}\n\t\t\t\t\t\telse{p1_b[i].x++;}\n\t\t\t\t\t}else if(p1_b[i].l==4){\n\t\t\t\t\t\tif(p1_b[i].f=='l'){p1_b[i].x-=2;}\n\t\t\t\t\t\telse{p1_b[i].x+=2;}\n\t\t\t\t\t}else if(p1_b[i].l==5){\n\t\t\t\t\t\tif(p1_b[i].f=='l'){p1_b[i].x--;}\n\t\t\t\t\t\telse{p1_b[i].x++;}\n\t\t\t\t\t}else if(p1_b[i].l==6){\n\t\t\t\t\t\tif(p1_b[i].f=='l'){p1_b[i].x--;}\n\t\t\t\t\t\telse{p1_b[i].x++;}\n\t\t\t\t\t}else if(p1_b[i].l==7){\n\t\t\t\t\t\tif(p1_b[i].f=='l'){p1_b[i].x-=3;}\n\t\t\t\t\t\telse{p1_b[i].x+=3;}\n\t\t\t\t\t}else if(p1_b[i].l==8){\n\t\t\t\t\t\tif(p1_b[i].f=='l'){p1_b[i].x--;}\n\t\t\t\t\t\telse{p1_b[i].x++;}\n\t\t\t\t\t}else if(p1_b[i].l==9){\n\t\t\t\t\t\tif(p1_b[i].f=='l'){p1_b[i].x-=2;}\n\t\t\t\t\t\telse{p1_b[i].x+=2;}\n\t\t\t\t\t}else if(p1_b[i].l==10){\n\t\t\t\t\t\tif(p1_b[i].f=='l'){p1_b[i].x-=2;}\n\t\t\t\t\t\telse{p1_b[i].x+=2;}\n\t\t\t\t\t}\n\t\t\t\t\tif(p1_b[i].x&gt;70 || p1_b[i].x&lt;0){p1_b[i].z=0;}\n\t\t\t\t}\n\t\t\t} \n\t\t\tif(!p2.ifinvin){\n\t\t\t\tfor(int i=0;i&lt;BULLETNUM;i++){\n\t\t\t\t\tif(p1_b[i].z==1){\n\t\t\t\t\t\tif((p1_b[i].x==p2.x &amp;&amp; p1_b[i].y==p2.y) || (p1_b[i].x==p2.x+1 &amp;&amp; p1_b[i].y==p2.y) || (p1_b[i].x==p2.x-1 &amp;&amp; p1_b[i].y==p2.y)){\n\t\t\t\t\t\t\tif(p1_b[i].l==0){p2.hp--;}\n\t\t\t\t\t\t\telse if(p1_b[i].l==1){p2.hp-=7;}\n\t\t\t\t\t\t\telse if(p1_b[i].l==2){p2.hp-=40;}\n\t\t\t\t\t\t\telse if(p1_b[i].l==3){p2.hp-=20;}\n\t\t\t\t\t\t\telse if(p1_b[i].l==4){p2.hp-=25;}\n\t\t\t\t\t\t\telse if(p1_b[i].l==5){p2.hp-=2;}\n\t\t\t\t\t\t\telse if(p1_b[i].l==6){p2.walk_wait=3;p2.canwalk=false;}\n\t\t\t\t\t\t\telse if(p1_b[i].l==7){p2.hp-=5;}\n\t\t\t\t\t\t\telse if(p1_b[i].l==8){p2.reverttime=0;p2.revert=true;}\n\t\t\t\t\t\t\telse if(p1_b[i].l==9){p2.hp-=15;}\n\t\t\t\t\t\t\telse if(p1_b[i].l==10){p2.poison=true;p2.poisontime=0.5;}\n\t\t\t\t\t\t\tp1_b[i].z=0;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} \n\t\t\t}\n\t\t\tfor(int i=0;i&lt;BULLETNUM;i++){\n\t\t\t\tif(p2_b[i].z==1){\n\t\t\t\t\tif(p2_b[i].l==0){\n\t\t\t\t\t\tif(p2_b[i].f=='l'){p2_b[i].x-=BULLETRUN;}\n\t\t\t\t\t\telse{p2_b[i].x+=BULLETRUN;}\n\t\t\t\t\t}else if(p2_b[i].l==1){\n\t\t\t\t\t\tif(p2_b[i].f=='l'){p2_b[i].x--;}\n\t\t\t\t\t\telse{p2_b[i].x++;}\n\t\t\t\t\t}else if(p2_b[i].l==2 &amp;&amp; BIGbullet%BIGBULLET_TIME==0){\n\t\t\t\t\t\tif(p2_b[i].f=='l'){p2_b[i].x--;}\n\t\t\t\t\t\telse{p2_b[i].x++;}\n\t\t\t\t\t}else if(p2_b[i].l==3){\n\t\t\t\t\t\tif(p2_b[i].f=='l'){p2_b[i].x--;}\n\t\t\t\t\t\telse{p2_b[i].x++;}\n\t\t\t\t\t}else if(p2_b[i].l==4){\n\t\t\t\t\t\tif(p2_b[i].f=='l'){p2_b[i].x-=2;}\n\t\t\t\t\t\telse{p2_b[i].x+=2;}\n\t\t\t\t\t}else if(p2_b[i].l==5){\n\t\t\t\t\t\tif(p2_b[i].f=='l'){p2_b[i].x--;}\n\t\t\t\t\t\telse{p2_b[i].x++;}\n\t\t\t\t\t}else if(p2_b[i].l==6){\n\t\t\t\t\t\tif(p2_b[i].f=='l'){p2_b[i].x--;}\n\t\t\t\t\t\telse{p2_b[i].x++;}\n\t\t\t\t\t}else if(p2_b[i].l==7){\n\t\t\t\t\t\tif(p2_b[i].f=='l'){p2_b[i].x-=3;}\n\t\t\t\t\t\telse{p2_b[i].x+=3;}\n\t\t\t\t\t}else if(p2_b[i].l==8){\n\t\t\t\t\t\tif(p2_b[i].f=='l'){p2_b[i].x--;}\n\t\t\t\t\t\telse{p2_b[i].x++;}\n\t\t\t\t\t}else if(p2_b[i].l==9){\n\t\t\t\t\t\tif(p2_b[i].f=='l'){p2_b[i].x-=2;}\n\t\t\t\t\t\telse{p2_b[i].x+=2;}\n\t\t\t\t\t}else if(p2_b[i].l==10){\n\t\t\t\t\t\tif(p2_b[i].f=='l'){p2_b[i].x-=2;}\n\t\t\t\t\t\telse{p2_b[i].x+=2;}\n\t\t\t\t\t}\n\t\t\t\t\tif(p2_b[i].x&gt;70 || p2_b[i].x&lt;0){p2_b[i].z=0;}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif(!p1.ifinvin){\n\t\t\t\tfor(int i=0;i&lt;BULLETNUM;i++){\n\t\t\t\t\tif(p2_b[i].z==1){\n\t\t\t\t\t\tif((p2_b[i].x==p1.x &amp;&amp; p2_b[i].y==p1.y) || (p2_b[i].x==p1.x+1 &amp;&amp; p2_b[i].y==p1.y) || (p2_b[i].x==p1.x-1 &amp;&amp; p2_b[i].y==p1.y)){\n\t\t\t\t\t\t\tif(p2_b[i].l==0){p1.hp--;}\n\t\t\t\t\t\t\telse if(p2_b[i].l==1){p1.hp-=7;}\n\t\t\t\t\t\t\telse if(p2_b[i].l==2){p1.hp-=40;}\n\t\t\t\t\t\t\telse if(p2_b[i].l==3){p1.hp-=20;}\n\t\t\t\t\t\t\telse if(p2_b[i].l==4){p1.hp-=25;}\n\t\t\t\t\t\t\telse if(p2_b[i].l==5){p1.hp-=2;}\n\t\t\t\t\t\t\telse if(p2_b[i].l==6){p1.walk_wait=3;p1.canwalk=false;}\n\t\t\t\t\t\t\telse if(p2_b[i].l==7){p1.hp-=5;}\n\t\t\t\t\t\t\telse if(p2_b[i].l==8){p1.reverttime=0;p1.revert=true;}\n\t\t\t\t\t\t\telse if(p2_b[i].l==9){p1.hp-=15;}\n\t\t\t\t\t\t\telse if(p2_b[i].l==10){p1.poison=true;p1.poisontime=0.5;}\n\t\t\t\t\t\t\tp2_b[i].z=0;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} \n\t\t\t}\n\t\t\tif(p1.invintime&gt;59){\n\t\t\t\tp1.ifinvin=false;\n\t\t\t}\n\t\t\tif(p2.invintime&gt;59){\n\t\t\t\tp2.ifinvin=false;\n\t\t\t}\n\t\t\tif(!p1.jump &amp;&amp; p1.ifjump&gt;JUMPHIGHT){\n\t\t\t\tp1.y++;\n\t\t\t\tif(map[p1.y+2][p1.x]=='-'){\n\t\t\t\t\tp1.jump=true;\n\t\t\t\t}\n\t\t\t}else if(p1.ifjump&lt;JUMPHIGHT){\n\t\t\t\tp1.y--;\n\t\t\t}\n\t\t\tif(!p2.jump &amp;&amp; p2.ifjump&gt;JUMPHIGHT){\n\t\t\t\tp2.y++;\n\t\t\t\tif(map[p2.y+2][p2.x]=='-'){\n\t\t\t\t\tp2.jump=true;\n\t\t\t\t}\n\t\t\t}else if(p2.ifjump&lt;JUMPHIGHT){\n\t\t\t\tp2.y--;\n\t\t\t}\n\t\t\tif(!p2.ifdown){\n\t\t\t\t\/\/p2\u73a9\u5bb6 \n\t\t\t\tif(Key(left)){\n\t\t\t\t\tif(!p2.revert){p2.x-=RUN;p2.f='l';}\n\t\t\t\t\telse{p2.x+=RUN;p2.f='r';}\n\t\t\t\t}\n\t\t\t\tif(Key(right)){\n\t\t\t\t\tif(!p2.revert){p2.x+=RUN;p2.f='r';}\n\t\t\t\t\telse{p2.x-=RUN;p2.f='l';}\n\t\t\t\t}\n\t\t\t\tif(Key(up) &amp;&amp; p2.jump){\n\t\t\t\t\tp2.jump=false;\n\t\t\t\t\tp2.ifjump=0;\n\t\t\t\t}\n\t\t\t\tif(p2.canwalk){\n\t\t\t\t\tif(Key('B') &amp;&amp; Bullet%BULLET_==0){\n\t\t\t\t\t\tint p2_ii=-1;\n\t\t\t\t\t\tfor(int i=0;i&lt;BULLETNUM;i++){\n\t\t\t\t\t\t\tif(p2_b[i].z==0){\n\t\t\t\t\t\t\t\tp2_ii=i;\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(p2_ii&gt;=0){\n\t\t\t\t\t\t\tp2_b[p2_ii].z=1;\n\t\t\t\t\t\t\tp2_b[p2_ii].y=p2.y;\n\t\t\t\t\t\t\tif(p2.f=='l'){\n\t\t\t\t\t\t\t\tp2_b[p2_ii].x=p2.x-1;\n\t\t\t\t\t\t\t}else{\n\t\t\t\t\t\t\t\tp2_b[p2_ii].x=p2.x+1;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tp2_b[p2_ii].f=p2.f;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif(Key('N') &amp;&amp; p2.s1_ok){\n\t\t\t\t\t\tif(p2.s1==1){\n\t\t\t\t\t\t\tp2_s(1,&amp;p2.s1_wait,3);\n\t\t\t\t\t\t}else if(p2.s1==2){\n\t\t\t\t\t\t\tp2_s(3,&amp;p2.s1_wait,7);\n\t\t\t\t\t\t}else if(p2.s1==3){\n\t\t\t\t\t\t\tint p2_ii=-1;\n\t\t\t\t\t\t\tfor(int i=0;i&lt;BULLETNUM;i++){\n\t\t\t\t\t\t\t\tif(p2_b[i].z==0){\n\t\t\t\t\t\t\t\t\tp2_ii=i;\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif(p2_ii&gt;=0){\n\t\t\t\t\t\t\t\tp2_b[p2_ii].l=5;\n\t\t\t\t\t\t\t\tp2_b[p2_ii].z=1;\n\t\t\t\t\t\t\t\tp2_b[p2_ii].y=p2.y;\n\t\t\t\t\t\t\t\tif(p2.x&gt;p1.x){\n\t\t\t\t\t\t\t\t\tp2_b[p2_ii].x=p2.x-1;\n\t\t\t\t\t\t\t\t\tp2_b[p2_ii].f='l';\n\t\t\t\t\t\t\t\t}else if(p2.x&lt;p1.x){\n\t\t\t\t\t\t\t\t\tp2_b[p2_ii].x=p2.x+1;\n\t\t\t\t\t\t\t\t\tp2_b[p2_ii].f='r';\n\t\t\t\t\t\t\t\t}else{\n\t\t\t\t\t\t\t\t\tp2_b[p2_ii].z=0;\n\t\t\t\t\t\t\t\t\tp1.hp-=2;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tp2.s1_wait=3;\n\t\t\t\t\t\t}else if(p2.s1==4 &amp;&amp; !p2.ifdown &amp;&amp; !p2.ifinvin){\n\t\t\t\t\t\t\tp2.ifinvin=true;\n\t\t\t\t\t\t\tp2.invintime=0;\n\t\t\t\t\t\t\tp2.s1_wait=6;\n\t\t\t\t\t\t}else if(p2.s1==5){\n\t\t\t\t\t\t\tp2_s(7,&amp;p2.s1_wait,3);\n\t\t\t\t\t\t}else if(p2.s2==6){\n\t\t\t\t\t\t\tp2_s(9,&amp;p2.s1_wait,6);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif(Key('M') &amp;&amp; p2.s2_ok){\n\t\t\t\t\t\tif(p2.s2==1){\n\t\t\t\t\t\t\tp2_s(2,&amp;p2.s2_wait,15);\n\t\t\t\t\t\t}else if(p2.s2==2){\n\t\t\t\t\t\t\tp2_s(4,&amp;p2.s2_wait,10);\n\t\t\t\t\t\t}else if(p2.s2==3){\n\t\t\t\t\t\t\tp2_s(6,&amp;p2.s2_wait,7);\n\t\t\t\t\t\t}else if(p2.s2==4 &amp;&amp; !p2.ifdown){\n\t\t\t\t\t\t\tp2.ifdown=true;\n\t\t\t\t\t\t\tp2.y++;\n\t\t\t\t\t\t\tp2.dwontime=0;\n\t\t\t\t\t\t\tp2.s2_wait=2;\n\t\t\t\t\t\t}else if(p2.s2==5){\n\t\t\t\t\t\t\tp2_s(8,&amp;p2.s2_wait,7);\n\t\t\t\t\t\t}else if(p2.s2==6){\n\t\t\t\t\t\t\tp2_s(10,&amp;p2.s2_wait,6);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}else{\n\t\t\t\tif(p2.f=='r'){\n\t\t\t\t\tp2.x+=2;\n\t\t\t\t}else{\n\t\t\t\t\tp2.x-=2;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif(!p1.ifdown){\n\t\t\t\t\/\/p1\u73a9\u5bb6 \n\t\t\t\tif(Key('A')){\n\t\t\t\t\tif(!p1.revert){p1.x-=RUN;p1.f='l';}\n\t\t\t\t\telse{p1.x+=RUN;p1.f='r';}\n\t\t\t\t}\n\t\t\t\tif(Key('D')){\n\t\t\t\t\tif(!p1.revert){p1.x+=RUN;p1.f='r';}\n\t\t\t\t\telse{p1.x-=RUN;p1.f='l';}\n\t\t\t\t}\n\t\t\t\tif(Key('W')&amp;&amp; p1.jump){\n\t\t\t\t\tp1.jump=false;\n\t\t\t\t\tp1.ifjump=0;\n\t\t\t\t}\n\t\t\t\tif(p1.canwalk){\n\t\t\t\t\tif(Key('1') &amp;&amp; Bullet%BULLET_==0){\n\t\t\t\t\t\tint p1_ii=-1;\n\t\t\t\t\t\tfor(int i=0;i&lt;BULLETNUM;i++){\n\t\t\t\t\t\t\tif(p1_b[i].z==0){\n\t\t\t\t\t\t\t\tp1_ii=i;\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(p1_ii&gt;=0){\n\t\t\t\t\t\t\tp1_b[p1_ii].l=0;\n\t\t\t\t\t\t\tp1_b[p1_ii].z=1;\n\t\t\t\t\t\t\tp1_b[p1_ii].y=p1.y;\n\t\t\t\t\t\t\tif(p1.f=='l'){\n\t\t\t\t\t\t\t\tp1_b[p1_ii].x=p1.x-1;\n\t\t\t\t\t\t\t}else{\n\t\t\t\t\t\t\t\tp1_b[p1_ii].x=p1.x+1;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tp1_b[p1_ii].f=p1.f;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif(Key('2') &amp;&amp; p1.s1_ok){\n\t\t\t\t\t\tif(p1.s1==1){\n\t\t\t\t\t\t\tp1_s(1,&amp;p1.s1_wait,3);\n\t\t\t\t\t\t}else if(p1.s1==2){\n\t\t\t\t\t\t\tp1_s(3,&amp;p1.s1_wait,7);\n\t\t\t\t\t\t}else if(p1.s1==3){\n\t\t\t\t\t\t\tint p1_ii=-1;\n\t\t\t\t\t\t\tfor(int i=0;i&lt;BULLETNUM;i++){\n\t\t\t\t\t\t\t\tif(p1_b[i].z==0){\n\t\t\t\t\t\t\t\t\tp1_ii=i;\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif(p1_ii&gt;=0){\n\t\t\t\t\t\t\t\tp1_b[p1_ii].l=5;\n\t\t\t\t\t\t\t\tp1_b[p1_ii].z=1;\n\t\t\t\t\t\t\t\tp1_b[p1_ii].y=p1.y;\n\t\t\t\t\t\t\t\tif(p1.x&gt;p2.x){\n\t\t\t\t\t\t\t\t\tp1_b[p1_ii].x=p1.x-1;\n\t\t\t\t\t\t\t\t\tp1_b[p1_ii].f='l';\n\t\t\t\t\t\t\t\t}else if(p1.x&lt;p2.x){\n\t\t\t\t\t\t\t\t\tp1_b[p1_ii].x=p1.x+1;\n\t\t\t\t\t\t\t\t\tp1_b[p1_ii].f='r';\n\t\t\t\t\t\t\t\t}else{\n\t\t\t\t\t\t\t\t\tp1_b[p1_ii].z=0;\n\t\t\t\t\t\t\t\t\tp2.hp-=2;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tp1.s1_wait=3;\n\t\t\t\t\t\t}else if(p1.s1==4 &amp;&amp; !p1.ifdown &amp;&amp; !p1.ifinvin){\n\t\t\t\t\t\t\tp1.ifinvin=true;\n\t\t\t\t\t\t\tp1.invintime=0;\n\t\t\t\t\t\t\tp1.s1_wait=6;\n\t\t\t\t\t\t}else if(p1.s1==5){\n\t\t\t\t\t\t\tp1_s(7,&amp;p1.s1_wait,4);\n\t\t\t\t\t\t}else if(p1.s1==6){\n\t\t\t\t\t\t\tp1_s(9,&amp;p1.s1_wait,6);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif(Key('3') &amp;&amp; p1.s2_ok){\n\t\t\t\t\t\tif(p1.s2==1){\n\t\t\t\t\t\t\tp1_s(2,&amp;p1.s2_wait,15);\n\t\t\t\t\t\t}else if(p1.s2==2){\n\t\t\t\t\t\t\tp1_s(4,&amp;p1.s2_wait,10);\n\t\t\t\t\t\t}else if(p1.s2==3){\n\t\t\t\t\t\t\tp1_s(6,&amp;p1.s2_wait,7);\n\t\t\t\t\t\t}else if(p1.s2==4 &amp;&amp; !p1.ifdown){\n\t\t\t\t\t\t\tp1.ifdown=true;\n\t\t\t\t\t\t\tp1.y++;\n\t\t\t\t\t\t\tp1.dwontime=0;\n\t\t\t\t\t\t\tp1.s2_wait=2;\n\t\t\t\t\t\t}else if(p1.s2==5){\n\t\t\t\t\t\t\tp1_s(8,&amp;p1.s2_wait,7);\n\t\t\t\t\t\t}else if(p1.s2==6){\n\t\t\t\t\t\t\tp1_s(10,&amp;p1.s2_wait,6);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}else{\n\t\t\t\tif(p1.f=='r'){\n\t\t\t\t\tp1.x+=2;\n\t\t\t\t}else{\n\t\t\t\t\tp1.x-=2;\n\t\t\t\t}\n\t\t\t}\n\t\t\tp1.dwontime++;\n\t\t\tp1.invintime++;\n\t\t\tp2.dwontime++;\n\t\t\tp2.invintime++;\n\t\t\tp2.ifjump++;\n\t\t\tp1.ifjump++;\n\t\t\tp1.reverttime++;\n\t\t\tp2.reverttime++;\n\t\t\t\/\/\u5b50\u5f39\u5c04\u51fb\u95f4\u9694\n\t\t\tBullet++;\n\t\t\tBIGbullet++;\n\t\t\t\/\/\u5224\u65ad\u6e38\u620f\u9000\u51fa\n\t\t\tif(Key(esc)){\n\t\t\t\treturn 0;\n\t\t\t} \n\t\t}\n\t}else{\n\t\tint Bullet=3;\n\t\twindows_size(72,25);\n\t\tclear_map(OLDMAP);\n\t\tp1.x=20;p1.y=10;p1.f='r';p1.energy=100;\n\t\tp2.x=52;p2.y=10;p2.f='l';p2.energy=100;\n\t\twhile(true){\n\t\t\tclear_map(map);\n\t\t\tadd_wall(map);\n\t\t\tif(p1.x&lt;1){p1.x=1;}\n\t\t\tif(p1.x&gt;70){p1.x=70;}\n\t\t\tif(p1.y&lt;1){p1.y=1;}\n\t\t\tif(p1.y&gt;20){p1.y=20;}\n\t\t\tif(p2.x&lt;1){p2.x=1;}\n\t\t\tif(p2.x&gt;70){p2.x=70;}\n\t\t\tif(p2.y&lt;1){p2.y=1;}\n\t\t\tif(p2.y&gt;20){p2.y=20;}\n\t\t\t\/\/\u66f4\u6539\u5730\u56fe \n\t\t\tmap[p2.y][p2.x]=2;\n\t\t\tmap[p1.y][p1.x]=1;\n\t\t\tfor(int i=0;i&lt;BULLETNUM;i++){\n\t\t\t\tif(p1_b[i].z==1){\n\t\t\t\t\tif(p1_b[i].l==0){map[p1_b[i].y][p1_b[i].x]='&amp;';}\n\t\t\t\t}\n\t\t\t}\n\t\t\tfor(int i=0;i&lt;BULLETNUM;i++){\n\t\t\t\tif(p2_b[i].z==1){\n\t\t\t\t\tif(p2_b[i].l==0){map[p2_b[i].y][p2_b[i].x]='@';}\n\t\t\t\t}\n\t\t\t}\n\t\t\tdraw_map_delta(map);\n\t\t\tgo(2,1);\n\t\t\tprintf(\"p1\u80fd\u91cf:%d \",p1.energy);\n\t\t\tgo(60,1);\n\t\t\tprintf(\"p2\u80fd\u91cf:%d \",p2.energy);\n\t\t\tSleep(100);\n\t\t\tif(p1.energy&lt;100){p1.energy+=1;}\n\t\t\tif(p2.energy&lt;100){p2.energy+=1;}\n\t\t\t\/\/\u5b50\u5f39\u79fb\u52a8\n\t\t\tfor(int i=0;i&lt;BULLETNUM;i++){\n\t\t\t\tif(p1_b[i].z==1){\n\t\t\t\t\tif(p1_b[i].l==0){\n\t\t\t\t\t\tif(p1_b[i].f=='u'){p1_b[i].y-=BULLETRUN;}\n\t\t\t\t\t\tif(p1_b[i].f=='d'){p1_b[i].y+=BULLETRUN;}\n\t\t\t\t\t\tif(p1_b[i].f=='r'){p1_b[i].x+=BULLETRUN;}\n\t\t\t\t\t\tif(p1_b[i].f=='l'){p1_b[i].x-=BULLETRUN;}\n\t\t\t\t\t}\n\t\t\t\t\tif(p1_b[i].y&gt;=20 || p1_b[i].y&lt;=0 || p1_b[i].x&lt;=0 || p1_b[i].x&gt;=70){\n\t\t\t\t\t\tp1_b[i].z=0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} \n\t\t\tfor(int i=0;i&lt;BULLETNUM;i++){\n\t\t\t\tif(p2_b[i].z==1){\n\t\t\t\t\tif(p2_b[i].l==0){\n\t\t\t\t\t\tif(p2_b[i].f=='u'){p2_b[i].y-=BULLETRUN;}\n\t\t\t\t\t\tif(p2_b[i].f=='d'){p2_b[i].y+=BULLETRUN;}\n\t\t\t\t\t\tif(p2_b[i].f=='r'){p2_b[i].x+=BULLETRUN;}\n\t\t\t\t\t\tif(p2_b[i].f=='l'){p2_b[i].x-=BULLETRUN;}\n\t\t\t\t\t}\n\t\t\t\t\tif(p2_b[i].y&gt;=20 || p2_b[i].y&lt;=0 || p2_b[i].x&lt;=0 || p2_b[i].x&gt;=70){\n\t\t\t\t\t\tp2_b[i].z=0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} \n\t\t\t\/\/p1\u73a9\u5bb6 \n\t\t\tif(Key('A')){\n\t\t\t\tif(!p1.revert){p1.x-=RUN;p1.f='l';}\n\t\t\t\telse{p1.x+=RUN;p1.f='r';}\n\t\t\t}\n\t\t\tif(Key('D')){\n\t\t\t\tif(!p1.revert){p1.x+=RUN;p1.f='r';}\n\t\t\t\telse{p1.x-=RUN;p1.f='l';}\n\t\t\t}\n\t\t\tif(Key('W')){\n\t\t\t\tif(!p1.revert){p1.y-=RUN;p1.f='u';}\n\t\t\t\telse{p1.y+=RUN;p1.f='d';}\n\t\t\t}\n\t\t\tif(Key('S')){\n\t\t\t\tif(!p1.revert){p1.y+=RUN;p1.f='d';}\n\t\t\t\telse{p1.y-=RUN;p1.f='u';}\n\t\t\t}\n\t\t\tif(Key('1') &amp;&amp; Bullet%BULLET_==0){\n\t\t\t\tint p1_ii=-1;\n\t\t\t\tfor(int i=0;i&lt;BULLETNUM;i++){\n\t\t\t\t\tif(p1_b[i].z==0){\n\t\t\t\t\t\tp1_ii=i;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif(p1_ii&gt;=0){\n\t\t\t\t\tp1_b[p1_ii].l=0;\n\t\t\t\t\tp1_b[p1_ii].z=1;\n\t\t\t\t\tp1_b[p1_ii].y=p1.y;\n\t\t\t\t\tp1_b[p1_ii].x=p1.x;\n\t\t\t\t\tif(p1.f=='l'){\n\t\t\t\t\t\tp1_b[p1_ii].x=p1.x-1;\n\t\t\t\t\t}else if(p1.f=='r'){\n\t\t\t\t\t\tp1_b[p1_ii].x=p1.x+1;\n\t\t\t\t\t}else if(p1.f=='u'){\n\t\t\t\t\t\tp1_b[p1_ii].y=p1.y-1;\n\t\t\t\t\t}else if(p1.f=='d'){\n\t\t\t\t\t\tp1_b[p1_ii].y=p1.y+1;\n\t\t\t\t\t}\n\t\t\t\t\tp1_b[p1_ii].f=p1.f;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif(Key('2') &amp;&amp; p1.energy&gt;=50){\n\t\t\t\tint p1_ii=-1;\n\t\t\t\tfor(int i=0;i&lt;BULLETNUM;i++){\n\t\t\t\t\tif(p1_b[i].z==0){\n\t\t\t\t\t\tp1_ii=i;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif(p1_ii&gt;=0){\n\t\t\t\t\tp1_b[p1_ii].l=0;\n\t\t\t\t\tp1_b[p1_ii].z=1;\n\t\t\t\t\tp1_b[p1_ii].y=p1.y;\n\t\t\t\t\tp1_b[p1_ii].x=p1.x+1;\n\t\t\t\t\tp1_b[p1_ii].f='r';\n\t\t\t\t}\n\t\t\t\tp1_ii=-1;\n\t\t\t\tfor(int i=0;i&lt;BULLETNUM;i++){\n\t\t\t\t\tif(p1_b[i].z==0){\n\t\t\t\t\t\tp1_ii=i;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif(p1_ii&gt;=0){\n\t\t\t\t\tp1_b[p1_ii].l=0;\n\t\t\t\t\tp1_b[p1_ii].z=1;\n\t\t\t\t\tp1_b[p1_ii].y=p1.y;\n\t\t\t\t\tp1_b[p1_ii].x=p1.x-1;\n\t\t\t\t\tp1_b[p1_ii].f='l';\n\t\t\t\t}\n\t\t\t\tp1_ii=-1;\n\t\t\t\tfor(int i=0;i&lt;BULLETNUM;i++){\n\t\t\t\t\tif(p1_b[i].z==0){\n\t\t\t\t\t\tp1_ii=i;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif(p1_ii&gt;=0){\n\t\t\t\t\tp1_b[p1_ii].l=0;\n\t\t\t\t\tp1_b[p1_ii].z=1;\n\t\t\t\t\tp1_b[p1_ii].y=p1.y+1;\n\t\t\t\t\tp1_b[p1_ii].x=p1.x;\n\t\t\t\t\tp1_b[p1_ii].f='d';\n\t\t\t\t}\n\t\t\t\tp1_ii=-1;\n\t\t\t\tfor(int i=0;i&lt;BULLETNUM;i++){\n\t\t\t\t\tif(p1_b[i].z==0){\n\t\t\t\t\t\tp1_ii=i;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif(p1_ii&gt;=0){\n\t\t\t\t\tp1_b[p1_ii].l=0;\n\t\t\t\t\tp1_b[p1_ii].z=1;\n\t\t\t\t\tp1_b[p1_ii].y=p1.y+1;\n\t\t\t\t\tp1_b[p1_ii].x=p1.x;\n\t\t\t\t\tp1_b[p1_ii].f='u';\n\t\t\t\t}\n\t\t\t\tp1.energy-=50;\n\t\t\t}\n\t\t\t\n\t\t\t\/\/p1\u73a9\u5bb6 \n\t\t\tif(Key(VK_LEFT)){\n\t\t\t\tif(!p2.revert){p2.x-=RUN;p2.f='l';}\n\t\t\t\telse{p2.x+=RUN;p2.f='r';}\n\t\t\t}\n\t\t\tif(Key(VK_RIGHT)){\n\t\t\t\tif(!p2.revert){p2.x+=RUN;p2.f='r';}\n\t\t\t\telse{p2.x-=RUN;p2.f='l';}\n\t\t\t}\n\t\t\tif(Key(VK_UP)){\n\t\t\t\tif(!p2.revert){p2.y-=RUN;p2.f='u';}\n\t\t\t\telse{p2.y+=RUN;p2.f='d';}\n\t\t\t}\n\t\t\tif(Key(VK_DOWN)){\n\t\t\t\tif(!p2.revert){p2.y+=RUN;p2.f='d';}\n\t\t\t\telse{p2.y-=RUN;p2.f='u';}\n\t\t\t}\n\t\t\tif(Key('B') &amp;&amp; Bullet%BULLET_==0){\n\t\t\t\tint p2_ii=-1;\n\t\t\t\tfor(int i=0;i&lt;BULLETNUM;i++){\n\t\t\t\t\tif(p2_b[i].z==0){\n\t\t\t\t\t\tp2_ii=i;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif(p2_ii&gt;=0){\n\t\t\t\t\tp2_b[p2_ii].l=0;\n\t\t\t\t\tp2_b[p2_ii].z=1;\n\t\t\t\t\tp2_b[p2_ii].y=p2.y;\n\t\t\t\t\tp2_b[p2_ii].x=p2.x;\n\t\t\t\t\tif(p2.f=='l'){\n\t\t\t\t\t\tp2_b[p2_ii].x=p2.x-1;\n\t\t\t\t\t}else if(p2.f=='r'){\n\t\t\t\t\t\tp2_b[p2_ii].x=p2.x+1;\n\t\t\t\t\t}else if(p2.f=='u'){\n\t\t\t\t\t\tp2_b[p2_ii].y=p2.y-1;\n\t\t\t\t\t}else if(p2.f=='d'){\n\t\t\t\t\t\tp2_b[p2_ii].y=p2.y+1;\n\t\t\t\t\t}\n\t\t\t\t\tp2_b[p2_ii].f=p2.f;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif(Key('N') &amp;&amp; p2.energy&gt;=50){\n\t\t\t\tint p2_ii=-1;\n\t\t\t\tfor(int i=0;i&lt;BULLETNUM;i++){\n\t\t\t\t\tif(p2_b[i].z==0){\n\t\t\t\t\t\tp2_ii=i;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif(p2_ii&gt;=0){\n\t\t\t\t\tp2_b[p2_ii].l=0;\n\t\t\t\t\tp2_b[p2_ii].z=1;\n\t\t\t\t\tp2_b[p2_ii].y=p2.y;\n\t\t\t\t\tp2_b[p2_ii].x=p2.x+1;\n\t\t\t\t\tp2_b[p2_ii].f='r';\n\t\t\t\t}\n\t\t\t\tp2_ii=-1;\n\t\t\t\tfor(int i=0;i&lt;BULLETNUM;i++){\n\t\t\t\t\tif(p2_b[i].z==0){\n\t\t\t\t\t\tp2_ii=i;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif(p2_ii&gt;=0){\n\t\t\t\t\tp2_b[p2_ii].l=0;\n\t\t\t\t\tp2_b[p2_ii].z=1;\n\t\t\t\t\tp2_b[p2_ii].y=p2.y;\n\t\t\t\t\tp2_b[p2_ii].x=p2.x-1;\n\t\t\t\t\tp2_b[p2_ii].f='l';\n\t\t\t\t}\n\t\t\t\tp2_ii=-1;\n\t\t\t\tfor(int i=0;i&lt;BULLETNUM;i++){\n\t\t\t\t\tif(p2_b[i].z==0){\n\t\t\t\t\t\tp2_ii=i;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif(p2_ii&gt;=0){\n\t\t\t\t\tp2_b[p2_ii].l=0;\n\t\t\t\t\tp2_b[p2_ii].z=1;\n\t\t\t\t\tp2_b[p2_ii].y=p2.y+1;\n\t\t\t\t\tp2_b[p2_ii].x=p2.x;\n\t\t\t\t\tp2_b[p2_ii].f='d';\n\t\t\t\t}\n\t\t\t\tp2_ii=-1;\n\t\t\t\tfor(int i=0;i&lt;BULLETNUM;i++){\n\t\t\t\t\tif(p2_b[i].z==0){\n\t\t\t\t\t\tp2_ii=i;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif(p2_ii&gt;=0){\n\t\t\t\t\tp2_b[p2_ii].l=0;\n\t\t\t\t\tp2_b[p2_ii].z=1;\n\t\t\t\t\tp2_b[p2_ii].y=p2.y-1;\n\t\t\t\t\tp2_b[p2_ii].x=p2.x;\n\t\t\t\t\tp2_b[p2_ii].f='u';\n\t\t\t\t}\n\t\t\t\tp2.energy-=50;\n\t\t\t}\n\t\t\tBullet++;\n\t\t\t\/\/\u5224\u65ad\u6e38\u620f\u9000\u51fa\n\t\t\tif(Key(esc)){\n\t\t\t\treturn 0;\n\t\t\t}\n\t\t}\n\t} \n} \n <\/code><\/pre>\n<h2>\n   \u76ee\u524d\u5e73\u9762\u5bf9\u6218\u6ca1\u6709\u505a\u5b8c,\u53ea\u80fd\u5148\u73a9\u6a2a\u7248\u5bf9\u6218\u54e6~<br \/>\n  <\/h2>\n<h2>\n   <s><br \/>\n    \u70b9\u4e2a\u8d5e\u5427QWQ<br \/>\n   <\/s><br \/>\n  <\/h2>\n<\/p><\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>\u55e8\u55e8\u55e8,\u53c8\u662f\u6211! \u6211\u53c8\u6765\u53d1\u535a\u5ba2\u5566! \u6700\u8fd1\u592a\u95f2\u4e86,\u53c8\u505a\u4e86\u4e2asmall\u6e38\u620f:\u5c0f\u4eba-\u683c\u6597(\u6d4b\u8bd5\u7248) \u4e0a\u4ee3\u7801! \u8bb0\u5f97\u52a0 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":215,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[32],"tags":[],"class_list":["post-2003","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-32"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>c++\u63a7\u5236\u53f0\u53cc\u4eba\u683c\u6597\u5c0f\u6e38\u620f(\u6d4b\u8bd5\u7248) - \u7269\u5ae9\u8f6f\u4ef6\u8d44\u8baf\u7f51<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c\u63a7\u5236\u53f0\u53cc\u4eba\u683c\u6597\u5c0f\u6e38\u620f\u6d4b\u8bd5\u7248\/\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"c++\u63a7\u5236\u53f0\u53cc\u4eba\u683c\u6597\u5c0f\u6e38\u620f(\u6d4b\u8bd5\u7248) - \u7269\u5ae9\u8f6f\u4ef6\u8d44\u8baf\u7f51\" \/>\n<meta property=\"og:description\" content=\"\u55e8\u55e8\u55e8,\u53c8\u662f\u6211! \u6211\u53c8\u6765\u53d1\u535a\u5ba2\u5566! \u6700\u8fd1\u592a\u95f2\u4e86,\u53c8\u505a\u4e86\u4e2asmall\u6e38\u620f:\u5c0f\u4eba-\u683c\u6597(\u6d4b\u8bd5\u7248) \u4e0a\u4ee3\u7801! \u8bb0\u5f97\u52a0 [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c\u63a7\u5236\u53f0\u53cc\u4eba\u683c\u6597\u5c0f\u6e38\u620f\u6d4b\u8bd5\u7248\/\" \/>\n<meta property=\"og:site_name\" content=\"\u7269\u5ae9\u8f6f\u4ef6\u8d44\u8baf\u7f51\" \/>\n<meta property=\"article:published_time\" content=\"2025-05-08T22:00:19+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.wunen.com\/wp-content\/uploads\/2025\/03\/\u8d44\u8baf.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"260\" \/>\n\t<meta property=\"og:image:height\" content=\"180\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin@wunen\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u4f5c\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin@wunen\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data2\" content=\"24 \u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/\"},\"author\":{\"name\":\"admin@wunen\",\"@id\":\"http:\/\/www.wunen.com\/#\/schema\/person\/d5f7a6cf545656a9c90d507e64452db8\"},\"headline\":\"c++\u63a7\u5236\u53f0\u53cc\u4eba\u683c\u6597\u5c0f\u6e38\u620f(\u6d4b\u8bd5\u7248)\",\"datePublished\":\"2025-05-08T22:00:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/\"},\"wordCount\":6,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/www.wunen.com\/#organization\"},\"image\":{\"@id\":\"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/www.wunen.com\/wp-content\/uploads\/2025\/03\/\u8d44\u8baf.jpg\",\"articleSection\":[\"\u5bf9\u6218\u683c\u6597\"],\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/\",\"url\":\"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/\",\"name\":\"c++\u63a7\u5236\u53f0\u53cc\u4eba\u683c\u6597\u5c0f\u6e38\u620f(\u6d4b\u8bd5\u7248) - \u7269\u5ae9\u8f6f\u4ef6\u8d44\u8baf\u7f51\",\"isPartOf\":{\"@id\":\"http:\/\/www.wunen.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/#primaryimage\"},\"image\":{\"@id\":\"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/www.wunen.com\/wp-content\/uploads\/2025\/03\/\u8d44\u8baf.jpg\",\"datePublished\":\"2025-05-08T22:00:19+00:00\",\"breadcrumb\":{\"@id\":\"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/#primaryimage\",\"url\":\"http:\/\/www.wunen.com\/wp-content\/uploads\/2025\/03\/\u8d44\u8baf.jpg\",\"contentUrl\":\"http:\/\/www.wunen.com\/wp-content\/uploads\/2025\/03\/\u8d44\u8baf.jpg\",\"width\":260,\"height\":180},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"http:\/\/www.wunen.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"c++\u63a7\u5236\u53f0\u53cc\u4eba\u683c\u6597\u5c0f\u6e38\u620f(\u6d4b\u8bd5\u7248)\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/www.wunen.com\/#website\",\"url\":\"http:\/\/www.wunen.com\/\",\"name\":\"\u7269\u5ae9\u8f6f\u4ef6\u8d44\u8baf\u7f51\",\"description\":\"\u8f6f\u4ef6\u8d44\u8baf\u6765\u7269\u5ae9\",\"publisher\":{\"@id\":\"http:\/\/www.wunen.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/www.wunen.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-Hans\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/www.wunen.com\/#organization\",\"name\":\"\u7269\u5ae9\u8f6f\u4ef6\u8d44\u8baf\u7f51\",\"url\":\"http:\/\/www.wunen.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"http:\/\/www.wunen.com\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/www.wunen.com\/wp-content\/uploads\/2025\/03\/cropped-\u7269\u5ae9-1.png\",\"contentUrl\":\"http:\/\/www.wunen.com\/wp-content\/uploads\/2025\/03\/cropped-\u7269\u5ae9-1.png\",\"width\":1024,\"height\":1024,\"caption\":\"\u7269\u5ae9\u8f6f\u4ef6\u8d44\u8baf\u7f51\"},\"image\":{\"@id\":\"http:\/\/www.wunen.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"http:\/\/www.wunen.com\/#\/schema\/person\/d5f7a6cf545656a9c90d507e64452db8\",\"name\":\"admin@wunen\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"http:\/\/www.wunen.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d90ec1e3faf77c4d4e66e40c29b85ff6401161e0502f401dae2f0e25b38ce25e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d90ec1e3faf77c4d4e66e40c29b85ff6401161e0502f401dae2f0e25b38ce25e?s=96&d=mm&r=g\",\"caption\":\"admin@wunen\"},\"sameAs\":[\"http:\/\/www.wunen.com\"],\"url\":\"http:\/\/www.wunen.com\/index.php\/author\/adminwunen\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"c++\u63a7\u5236\u53f0\u53cc\u4eba\u683c\u6597\u5c0f\u6e38\u620f(\u6d4b\u8bd5\u7248) - \u7269\u5ae9\u8f6f\u4ef6\u8d44\u8baf\u7f51","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c\u63a7\u5236\u53f0\u53cc\u4eba\u683c\u6597\u5c0f\u6e38\u620f\u6d4b\u8bd5\u7248\/","og_locale":"zh_CN","og_type":"article","og_title":"c++\u63a7\u5236\u53f0\u53cc\u4eba\u683c\u6597\u5c0f\u6e38\u620f(\u6d4b\u8bd5\u7248) - \u7269\u5ae9\u8f6f\u4ef6\u8d44\u8baf\u7f51","og_description":"\u55e8\u55e8\u55e8,\u53c8\u662f\u6211! \u6211\u53c8\u6765\u53d1\u535a\u5ba2\u5566! \u6700\u8fd1\u592a\u95f2\u4e86,\u53c8\u505a\u4e86\u4e2asmall\u6e38\u620f:\u5c0f\u4eba-\u683c\u6597(\u6d4b\u8bd5\u7248) \u4e0a\u4ee3\u7801! \u8bb0\u5f97\u52a0 [&hellip;]","og_url":"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c\u63a7\u5236\u53f0\u53cc\u4eba\u683c\u6597\u5c0f\u6e38\u620f\u6d4b\u8bd5\u7248\/","og_site_name":"\u7269\u5ae9\u8f6f\u4ef6\u8d44\u8baf\u7f51","article_published_time":"2025-05-08T22:00:19+00:00","og_image":[{"width":260,"height":180,"url":"http:\/\/www.wunen.com\/wp-content\/uploads\/2025\/03\/\u8d44\u8baf.jpg","type":"image\/jpeg"}],"author":"admin@wunen","twitter_card":"summary_large_image","twitter_misc":{"\u4f5c\u8005":"admin@wunen","\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"24 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/#article","isPartOf":{"@id":"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/"},"author":{"name":"admin@wunen","@id":"http:\/\/www.wunen.com\/#\/schema\/person\/d5f7a6cf545656a9c90d507e64452db8"},"headline":"c++\u63a7\u5236\u53f0\u53cc\u4eba\u683c\u6597\u5c0f\u6e38\u620f(\u6d4b\u8bd5\u7248)","datePublished":"2025-05-08T22:00:19+00:00","mainEntityOfPage":{"@id":"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/"},"wordCount":6,"commentCount":0,"publisher":{"@id":"http:\/\/www.wunen.com\/#organization"},"image":{"@id":"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/#primaryimage"},"thumbnailUrl":"http:\/\/www.wunen.com\/wp-content\/uploads\/2025\/03\/\u8d44\u8baf.jpg","articleSection":["\u5bf9\u6218\u683c\u6597"],"inLanguage":"zh-Hans","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/#respond"]}]},{"@type":"WebPage","@id":"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/","url":"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/","name":"c++\u63a7\u5236\u53f0\u53cc\u4eba\u683c\u6597\u5c0f\u6e38\u620f(\u6d4b\u8bd5\u7248) - \u7269\u5ae9\u8f6f\u4ef6\u8d44\u8baf\u7f51","isPartOf":{"@id":"http:\/\/www.wunen.com\/#website"},"primaryImageOfPage":{"@id":"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/#primaryimage"},"image":{"@id":"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/#primaryimage"},"thumbnailUrl":"http:\/\/www.wunen.com\/wp-content\/uploads\/2025\/03\/\u8d44\u8baf.jpg","datePublished":"2025-05-08T22:00:19+00:00","breadcrumb":{"@id":"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/"]}]},{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/#primaryimage","url":"http:\/\/www.wunen.com\/wp-content\/uploads\/2025\/03\/\u8d44\u8baf.jpg","contentUrl":"http:\/\/www.wunen.com\/wp-content\/uploads\/2025\/03\/\u8d44\u8baf.jpg","width":260,"height":180},{"@type":"BreadcrumbList","@id":"http:\/\/www.wunen.com\/index.php\/2025\/05\/09\/c%e6%8e%a7%e5%88%b6%e5%8f%b0%e5%8f%8c%e4%ba%ba%e6%a0%bc%e6%96%97%e5%b0%8f%e6%b8%b8%e6%88%8f%e6%b5%8b%e8%af%95%e7%89%88\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"http:\/\/www.wunen.com\/"},{"@type":"ListItem","position":2,"name":"c++\u63a7\u5236\u53f0\u53cc\u4eba\u683c\u6597\u5c0f\u6e38\u620f(\u6d4b\u8bd5\u7248)"}]},{"@type":"WebSite","@id":"http:\/\/www.wunen.com\/#website","url":"http:\/\/www.wunen.com\/","name":"\u7269\u5ae9\u8f6f\u4ef6\u8d44\u8baf\u7f51","description":"\u8f6f\u4ef6\u8d44\u8baf\u6765\u7269\u5ae9","publisher":{"@id":"http:\/\/www.wunen.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/www.wunen.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-Hans"},{"@type":"Organization","@id":"http:\/\/www.wunen.com\/#organization","name":"\u7269\u5ae9\u8f6f\u4ef6\u8d44\u8baf\u7f51","url":"http:\/\/www.wunen.com\/","logo":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"http:\/\/www.wunen.com\/#\/schema\/logo\/image\/","url":"http:\/\/www.wunen.com\/wp-content\/uploads\/2025\/03\/cropped-\u7269\u5ae9-1.png","contentUrl":"http:\/\/www.wunen.com\/wp-content\/uploads\/2025\/03\/cropped-\u7269\u5ae9-1.png","width":1024,"height":1024,"caption":"\u7269\u5ae9\u8f6f\u4ef6\u8d44\u8baf\u7f51"},"image":{"@id":"http:\/\/www.wunen.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"http:\/\/www.wunen.com\/#\/schema\/person\/d5f7a6cf545656a9c90d507e64452db8","name":"admin@wunen","image":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"http:\/\/www.wunen.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d90ec1e3faf77c4d4e66e40c29b85ff6401161e0502f401dae2f0e25b38ce25e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d90ec1e3faf77c4d4e66e40c29b85ff6401161e0502f401dae2f0e25b38ce25e?s=96&d=mm&r=g","caption":"admin@wunen"},"sameAs":["http:\/\/www.wunen.com"],"url":"http:\/\/www.wunen.com\/index.php\/author\/adminwunen\/"}]}},"_links":{"self":[{"href":"http:\/\/www.wunen.com\/index.php\/wp-json\/wp\/v2\/posts\/2003","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/www.wunen.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/www.wunen.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/www.wunen.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/www.wunen.com\/index.php\/wp-json\/wp\/v2\/comments?post=2003"}],"version-history":[{"count":0,"href":"http:\/\/www.wunen.com\/index.php\/wp-json\/wp\/v2\/posts\/2003\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/www.wunen.com\/index.php\/wp-json\/wp\/v2\/media\/215"}],"wp:attachment":[{"href":"http:\/\/www.wunen.com\/index.php\/wp-json\/wp\/v2\/media?parent=2003"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/www.wunen.com\/index.php\/wp-json\/wp\/v2\/categories?post=2003"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/www.wunen.com\/index.php\/wp-json\/wp\/v2\/tags?post=2003"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}