• 欢迎访问C语言网www.dotcpp.com 比赛栏每月有奖月赛!举办比赛联系QQ:2045302297
  • 问题反馈、粉丝交流 QQ群327452739 蓝桥杯训练群:113766799 申请群时请备注排名里的昵称
  • C语言研究中心 为您提供有图、有料、解渴的C语言专题! 欢迎讨论!

用纯C语言实现坦克大战

项目源码 CTO 72746次浏览 19个评论

好久没给大家看有意思的C语言实现的代码了,今天给大家分享一个C语言实现坦克大战的游戏源码,依旧是纯C语言,点c文件,但是是在TC的环境下,运行效果截图如下:

 

用纯C语言实现坦克大战

 

上下左右控制方向,空格为发射炮弹,还带声音哦!
用纯C语言实现坦克大战

 

小编亲自没有问题,大家可以自行上机实验,编译器下载见

C/C++开发和学习人员必备工具下载集合(含助手及破解补丁)

 

下面上代码!

 

  1. /* time:2017/1/15 */
  2. /* edit:www.dotcpp.com */
  3. #include <graphics.h>
  4. #include <stdlib.h>
  5. #include <dos.h>
  6. #include <conio.h>
  7. #include <bios.h>
  8. #define KEY_ESC 0x01
  9. #define KEY_SPACE 0x39
  10. #define KEY_UP 0x48
  11. #define KEY_LEFT 0x4b
  12. #define KEY_RIGHT 0x4d
  13. #define KEY_DOWN 0x50
  14.  
  15. int map[20][20]={1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  16. 1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,
  17. 1,0,2,2,2,2,0,0,2,2,2,2,0,0,0,0,0,0,0,1,
  18. 1,0,0,0,0,0,0,0,2,0,0,2,0,1,1,1,1,0,0,1,
  19. 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,
  20. 1,2,2,2,2,2,2,2,0,0,0,0,0,0,0,2,2,0,0,1,
  21. 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,1,
  22. 1,0,1,1,1,1,3,3,3,3,0,0,0,0,0,0,0,2,0,1,
  23. 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,
  24. 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,
  25. 1,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,1,
  26. 1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,3,3,3,0,1,
  27. 1,0,0,0,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,1,
  28. 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,
  29. 1,0,0,0,0,3,3,3,1,1,1,1,1,1,1,0,0,0,0,1,
  30. 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,
  31. 1,0,2,2,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,
  32. 1,0,2,2,0,0,0,0,2,2,2,0,0,0,2,2,0,0,0,1,
  33. 1,0,0,0,0,0,0,8,2,5,2,0,0,0,0,0,0,0,0,1,
  34. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1};
  35. struct f
  36. {
  37. int x;
  38. int y;
  39. int direction;
  40. };
  41. struct play
  42. {
  43. int x;
  44. int y;
  45. int direction;
  46. struct f fire[5];
  47. int score;
  48. }Playone;
  49. struct a
  50. {
  51. int x;
  52. int y;
  53. int color;
  54. int direction;
  55. int directiontwo;
  56. int fireplay;
  57. struct f fire;
  58. }amy[5];
  59. char key_state[128],key_pressed[128];
  60. void Init();
  61. void End();
  62. void DrawMap();
  63. void DrawWater(int x,int y);
  64. void DrawBrick(int x,int y);
  65. void DrawTone(int x,int y);
  66. void DrawHome(int x,int y);
  67. void DrawBlack(int x,int y);
  68. void DrawPlay(int x,int y);
  69. void DrawAmy(int x,int y,int i);
  70. void Score();
  71. void GamePlay();
  72. void GameOver();
  73. void TimeDelay(unsigned long microsec);
  74. int GetKey(int ScanCode);
  75. void interrupt far (*OldInt9Handler)();
  76. void far interrupt NewInt9();
  77. void InstallKeyboard();
  78. void ShutDownKeyboard();
  79. void main(void)
  80. {
  81. Init();
  82. DrawMap();
  83. GamePlay();
  84. End();
  85. }
  86. void TimeDelay(unsigned long microsec)
  87. {
  88. union REGS r;
  89. r.h.ah=0x86;
  90. r.x.cx=microsec>>16;
  91. r.x.dx=microsec;
  92. int86(0x15,&r,&r);
  93. }
  94. void Init()
  95. {int gd=DETECT,gm;
  96. initgraph(&gd,&gm,"C:\\TC20\\BGI");
  97. cleardevice();
  98. InstallKeyboard();
  99. }
  100. void End()
  101. {
  102. ShutDownKeyboard();
  103. closegraph();
  104. }
  105. void DrawTone(int x,int y)
  106. {
  107. setfillstyle(SOLID_FILL,7);
  108. bar(100+x*20-9,50+y*20-9,100+x*20+9,50+y*20+9);
  109. }
  110. void DrawWater(int x,int y)
  111. {
  112. setfillstyle(SOLID_FILL,BLUE);
  113. bar(100+x*20-9,50+y*20-9,100+x*20+9,50+y*20+9);
  114. }
  115. void DrawBrick(int x,int y)
  116. {
  117. setfillstyle(SOLID_FILL,6);
  118. bar(100+x*20-9,50+y*20-9,100+x*20+9,50+y*20+9);
  119. setcolor(15);
  120. line(100+x*20-9,50+y*20-4,100+x*20+9,50+y*20-4);
  121. line(100+x*20-9,50+y*20+4,100+x*20+9,50+y*20+4);
  122. line(100+x*20-4,50+y*20-9,100+x*20-4,50+y*20+9);
  123. line(100+x*20+4,50+y*20-9,100+x*20+4,50+y*20+9);
  124. }
  125. void DrawHome(int x,int y)
  126. {
  127. setcolor(0);
  128. setfillstyle(SOLID_FILL,GREEN);
  129. fillellipse(100+x*20,50+y*20,9,9);
  130. }
  131. void DrawBlack(int x,int y)
  132. {
  133. setcolor(0);
  134. setfillstyle(SOLID_FILL,0);
  135. bar(100+x*20-9,50+y*20-9,100+x*20+9,50+y*20+9);
  136. }
  137. void DrawPlay(int x,int y)
  138. {
  139. setcolor(4);
  140. circle(100+x*20,50+y*20,7);
  141. switch(Playone.direction)
  142. {
  143. case 1:line(100+x*20,50+y*20,100+x*20,50+y*20-9);break;
  144. case 2:line(100+x*20,50+y*20,100+x*20+9,50+y*20);break;
  145. case 3:line(100+x*20,50+y*20,100+x*20,50+y*20+9);break;
  146. case 4:line(100+x*20,50+y*20,100+x*20-9,50+y*20);break;
  147. }
  148. }
  149. void DrawAmy(int x,int y,int i)
  150. {
  151. if(amy[i].color==12)
  152. setcolor(12);
  153. else if(amy[i].color==13)
  154. setcolor(13);
  155. else
  156. setcolor(14);
  157. circle(100+x*20,50+y*20,7);
  158. switch(amy[i].direction)
  159. {
  160. case 1:line(100+x*20,50+y*20,100+x*20,50+y*20-9);break;
  161. case 2:line(100+x*20,50+y*20,100+x*20+9,50+y*20);break;
  162. case 3:line(100+x*20,50+y*20,100+x*20,50+y*20+9);break;
  163. case 4:line(100+x*20,50+y*20,100+x*20-9,50+y*20);break;
  164. }
  165. }
  166. void Score()
  167. {
  168. char s[10];
  169. Playone.score+=10;
  170. sprintf(s,"%d",Playone.score);
  171. setfillstyle(SOLID_FILL,0);
  172. bar(550,100,640,130);
  173. settextstyle(0,0,2);
  174. setcolor(YELLOW);
  175. outtextxy(550,115,s);
  176. }
  177. void DrawMap()
  178. {int i,j,k;
  179. for(i=0;i<20;i++)
  180. {
  181. for(j=0;j<20;j++)
  182. if(map[i][j]==1)
  183. DrawTone(j,i);
  184. else if(map[i][j]==2)
  185. DrawBrick(j,i);
  186. else if(map[i][j]==3)
  187. DrawWater(j,i);
  188. else if(map[i][j]==5)
  189. DrawHome(j,i);
  190. else if(map[i][j]==8)
  191. {
  192. Playone.x=i;
  193. Playone.y=j;
  194. Playone.direction=1;
  195. DrawPlay(j,i);
  196. for(k=0;k<5;k++)
  197. Playone.fire[k].direction=-1;
  198. }
  199. else if(map[i][j]==9)
  200. {
  201. amy[0].x=1;amy[0].y=1;amy[0].direction=amy[0].directiontwo=3;
  202. amy[0].color=12;
  203. DrawAmy(j,i,0);
  204. }
  205. }
  206. for(i=1;i<5;i++)
  207. amy[i].direction=amy[i].fire.direction=-1;
  208. outtextxy(210,450,"Edit By www.dotcpp.com");
  209. settextstyle(0,0,2);
  210. setcolor(9);
  211. outtextxy(525,80,"Score");
  212. setcolor(YELLOW);
  213. outtextxy(550,115,"0");
  214. }
  215. void far interrupt NewInt9(void)
  216. {
  217. unsigned char ScanCode,temp;
  218. ScanCode=inportb(0x60);
  219. temp=inportb(0x61);
  220. outportb(0x61,temp | 0x80);
  221. outportb(0x61,temp & 0x7f);
  222. if(ScanCode&0x80)
  223. {
  224. ScanCode&=0x7f;
  225. key_state[ScanCode]=0;
  226. }
  227. else
  228. {
  229. key_state[ScanCode]=1;
  230. key_pressed[ScanCode]=1;
  231. }
  232. outportb(0x20,0x20);
  233. }
  234.  
  235. void InstallKeyboard(void)
  236. {
  237. int i;
  238. for(i=0;i<128;i++)
  239. key_state[i]=key_pressed[i]=0;
  240. OldInt9Handler=getvect(9);
  241. setvect(9,NewInt9);
  242. }
  243.  
  244. void ShutDownKeyboard(void)
  245. {
  246. setvect(9,OldInt9Handler);
  247. }
  248.  
  249. int GetKey(int ScanCode)
  250. {
  251. int res;
  252. res=key_state[ScanCode]|key_pressed[ScanCode];
  253. key_pressed[ScanCode]=0;
  254. return res;
  255. }
  256. void GameOver()
  257. {
  258. setcolor(0);
  259. setfillstyle(SOLID_FILL,0);
  260. fillellipse(100+9*20,50+18*20,9,9);
  261. nosound();
  262. setcolor(RED);
  263. settextstyle(0,0,4);
  264. outtextxy(150,5,"GAME OVER");
  265. while(1)
  266. {
  267. if(GetKey(KEY_ESC))
  268. break;
  269. }
  270. }
  271. void GamePlay()
  272. {
  273. int i,j,lose=0;
  274. int t=0;
  275. randomize();
  276. while(1)
  277. {
  278. for(i=0;i<5;i++)
  279. {
  280. if(amy[i].fire.direction>0)
  281. putpixel(100+amy[i].fire.y*20,50+amy[i].fire.x*20,11);
  282. }
  283. for(i=0;i<=4;i++)
  284. {
  285. if(Playone.fire[i].direction>0)
  286. putpixel(100+Playone.fire[i].y*20,50+Playone.fire[i].x*20,11);
  287. }
  288. TimeDelay(500000);
  289. for(i=0;i<5;i++)
  290. {
  291. if(amy[i].fire.direction>0)
  292. putpixel(100+amy[i].fire.y*20,50+amy[i].fire.x*20,0);
  293. }
  294. for(i=0;i<=4;i++)
  295. {
  296. if(Playone.fire[i].direction>0)
  297. putpixel(100+Playone.fire[i].y*20,50+Playone.fire[i].x*20,0);
  298. }
  299. for(i=0;i<=4;i++)
  300. {
  301. if(Playone.fire[i].direction<0)
  302. continue;
  303. if(Playone.fire[i].direction==1)
  304. {Playone.fire[i].x--;Playone.fire[i].y=Playone.fire[i].y;}
  305. else if(Playone.fire[i].direction==2)
  306. {Playone.fire[i].y++;Playone.fire[i].y=Playone.fire[i].y;}
  307. else if(Playone.fire[i].direction==3)
  308. {Playone.fire[i].x++;Playone.fire[i].y=Playone.fire[i].y;}
  309. else if(Playone.fire[i].direction==4)
  310. {Playone.fire[i].y--;Playone.fire[i].y=Playone.fire[i].y;}
  311. if(map[Playone.fire[i].x][Playone.fire[i].y]==1)
  312. Playone.fire[i].direction=-1;
  313. if(map[Playone.fire[i].x][Playone.fire[i].y]==2)
  314. {
  315. Playone.fire[i].direction=-1;
  316. DrawBlack(Playone.fire[i].y,Playone.fire[i].x);
  317. map[Playone.fire[i].x][Playone.fire[i].y]=0;
  318. }
  319. if(map[Playone.fire[i].x][Playone.fire[i].y]==5)
  320. {lose=1;break;}
  321. for(j=0;j<5;j++)
  322. {
  323. if(amy[j].direction<0)
  324. continue;
  325. if(amy[j].x==Playone.fire[i].x&&amy[j].y==Playone.fire[i].y)
  326. {
  327. Playone.fire[i].direction=-1;
  328. DrawBlack(Playone.fire[i].y,Playone.fire[i].x);
  329. map[Playone.fire[i].x][Playone.fire[i].y]=0;
  330. amy[j].fire.direction=amy[j].direction=-1;
  331. Score();
  332. }
  333. }
  334. }
  335. for(i=0;i<5;i++)
  336. {
  337. if(amy[i].direction<0||amy[i].fire.direction<0)
  338. continue;
  339. if(amy[i].fire.direction==1)
  340. {amy[i].fire.x--;amy[i].fire.y=amy[i].fire.y;}
  341. else if(amy[i].fire.direction==2)
  342. {amy[i].fire.y++;amy[i].fire.x=amy[i].fire.x;}
  343. else if(amy[i].fire.direction==3)
  344. {amy[i].fire.x++;amy[i].fire.y=amy[i].fire.y;}
  345. else if(amy[i].fire.direction==4)
  346. {amy[i].fire.y--;amy[i].fire.x=amy[i].fire.x;}
  347. if(map[amy[i].fire.x][amy[i].fire.y]==1)
  348. amy[i].fire.direction=-1;
  349. if(map[amy[i].fire.x][amy[i].fire.y]==2)
  350. {
  351. amy[i].fire.direction=-1;
  352. DrawBlack(amy[i].fire.y,amy[i].fire.x);
  353. map[amy[i].fire.x][amy[i].fire.y]=0;
  354. }
  355. if(map[amy[i].fire.x][amy[i].fire.y]==5)
  356. {lose=1;break;}
  357. if(amy[i].fire.x==Playone.x&&amy[i].fire.y==Playone.y)
  358. {
  359. for(j=0;j<5;j++)
  360. Playone.fire[j].direction=-1;
  361. amy[i].fire.direction=-1;
  362. DrawBlack(amy[i].fire.y,amy[i].fire.x);
  363. map[amy[i].fire.x][amy[i].fire.y]=0;
  364. lose=1;break;
  365. }
  366. }
  367. nosound();
  368. for(i=0;i<5;i++)
  369. {
  370. if(amy[i].direction<0)
  371. continue;
  372. while(1)
  373. {
  374. amy[i].directiontwo=random(4)+1;
  375. if(amy[i].direction==1&&amy[i].directiontwo==3)
  376. continue;
  377. if(amy[i].direction==3&&amy[i].directiontwo==1)
  378. continue;
  379. if(amy[i].direction==2&&amy[i].directiontwo==4)
  380. continue;
  381. if(amy[i].direction==4&&amy[i].directiontwo==2)
  382. continue;
  383. if(amy[i].directiontwo==3&&(map[amy[i].x+1][amy[i].y]==3||map[amy[i].x+1][amy[i].y]==1||map[amy[i].x+1][amy[i].y]==2))
  384. continue;
  385. if(amy[i].directiontwo==1&&(map[amy[i].x-1][amy[i].y]==3||map[amy[i].x-1][amy[i].y]==1||map[amy[i].x-1][amy[i].y]==2))
  386. continue;
  387. if(amy[i].directiontwo==2&&(map[amy[i].x][amy[i].y+1]==3||map[amy[i].x][amy[i].y+1]==1||map[amy[i].x][amy[i].y+1]==2))
  388. continue;
  389. if(amy[i].directiontwo==4&&(map[amy[i].x][amy[i].y-1]==3||map[amy[i].x][amy[i].y-1]==1||map[amy[i].x][amy[i].y-1]==2))
  390. continue;
  391. DrawBlack(amy[i].y,amy[i].x);
  392. amy[i].direction=amy[i].directiontwo;
  393. if(amy[i].direction==1)
  394. {amy[i].x--;amy[i].y=amy[i].y;}
  395. if(amy[i].direction==3)
  396. {amy[i].x++;amy[i].y=amy[i].y;}
  397. if(amy[i].direction==2)
  398. {amy[i].y++;amy[i].x=amy[i].x;}
  399. if(amy[i].direction==4)
  400. {amy[i].y--;amy[i].x=amy[i].x;}
  401. if(amy[i].x==Playone.x&&amy[i].y==Playone.y)
  402. lose=1;
  403. if(map[amy[i].x][amy[i].y]==5)
  404. lose=1;
  405. DrawAmy(amy[i].y,amy[i].x,i);
  406. if(amy[i].fire.direction<0)
  407. amy[i].fireplay=random(4);
  408. if(amy[i].fireplay==1&&amy[i].fire.direction<0)
  409. {
  410. amy[i].fire.direction=amy[i].direction;
  411. amy[i].fire.x=amy[i].x;
  412. amy[i].fire.y=amy[i].y;
  413. }
  414. break;
  415. }
  416. }
  417. if(lose)
  418. {GameOver();break;}
  419. if(GetKey(KEY_ESC))
  420. break;
  421. if(GetKey(KEY_UP))
  422. {
  423. if(Playone.direction==1&&map[Playone.x-1][Playone.y]!=1&&map[Playone.x-1][Playone.y]!=2)
  424. {
  425. if(map[Playone.x-1][Playone.y]==3)
  426. continue;
  427. DrawBlack(Playone.y,Playone.x);
  428. Playone.x--;
  429. Playone.direction=1;
  430. DrawPlay(Playone.y,Playone.x);
  431. }
  432. else
  433. {
  434. DrawBlack(Playone.y,Playone.x);
  435. Playone.direction=1;
  436. DrawPlay(Playone.y,Playone.x);
  437. }
  438. }
  439. else if(GetKey(KEY_DOWN))
  440. {
  441. if(Playone.direction==3&&map[Playone.x+1][Playone.y]!=1&&map[Playone.x+1][Playone.y]!=2)
  442. {
  443. if(map[Playone.x+1][Playone.y]==3)
  444. continue;
  445. DrawBlack(Playone.y,Playone.x);
  446. Playone.x++;
  447. Playone.direction=3;
  448. DrawPlay(Playone.y,Playone.x);
  449. }
  450. else
  451. {
  452. DrawBlack(Playone.y,Playone.x);
  453. Playone.direction=3;
  454. DrawPlay(Playone.y,Playone.x);
  455. }
  456. }
  457. if(GetKey(KEY_RIGHT))
  458. {
  459. if(Playone.direction==2&&map[Playone.x][Playone.y+1]!=1&&map[Playone.x][Playone.y+1]!=2)
  460. {
  461. if(map[Playone.x][Playone.y+1]==3)
  462. continue;
  463. DrawBlack(Playone.y,Playone.x);
  464. Playone.y++;
  465. Playone.direction=2;
  466. DrawPlay(Playone.y,Playone.x);
  467. }
  468. else
  469. {
  470. DrawBlack(Playone.y,Playone.x);
  471. Playone.direction=2;
  472. DrawPlay(Playone.y,Playone.x);
  473. }
  474. }
  475. if(GetKey(KEY_LEFT))
  476. {
  477. if(Playone.direction==4&&map[Playone.x][Playone.y-1]!=1&&map[Playone.x][Playone.y-1]!=2)
  478. {
  479. if(map[Playone.x][Playone.y-1]==3)
  480. continue;
  481. DrawBlack(Playone.y,Playone.x);
  482. Playone.y--;
  483. Playone.direction=4;
  484. DrawPlay(Playone.y,Playone.x);
  485. }
  486. else
  487. {
  488. DrawBlack(Playone.y,Playone.x);
  489. Playone.direction=4;
  490. DrawPlay(Playone.y,Playone.x);
  491. }
  492. }
  493. if(GetKey(KEY_SPACE))
  494. {
  495. for(i=0;i<5;i++)
  496. if(Playone.fire[i].direction<0)
  497. {
  498. sound(300);
  499. Playone.fire[i].direction=Playone.direction;
  500. Playone.fire[i].x=Playone.x;
  501. Playone.fire[i].y=Playone.y;
  502. break;
  503. }
  504. }
  505. if(map[Playone.x][Playone.y]==5)
  506. lose=1;
  507. for(i=0;i<5;i++)
  508. {
  509. if(amy[i].direction<0)
  510. continue;
  511. if(amy[i].x==Playone.x&&amy[i].y==Playone.y)
  512. lose=1;
  513. }
  514. if(lose)
  515. {GameOver();break;}
  516. t++;
  517. if(t==30)
  518. {t=0;
  519. for(i=0;i<5;i++)
  520. if(amy[i].direction<0)
  521. {
  522. amy[i].direction=amy[i].directiontwo=3;
  523. amy[i].x=1;
  524. amy[i].y=random(3);
  525. if(amy[i].y==0)
  526. amy[i].y=1;
  527. else if(amy[i].y==1)
  528. amy[i].y=9;
  529. else
  530. amy[i].y=18;
  531. amy[i].color=random(3)+12;
  532. DrawAmy(amy[i].y,amy[i].x,i);
  533. break;
  534. }
  535. }
  536. }
  537. }

 

代码较长,大家可以分段复制,如发现问题欢迎随时留言!

 

有好东西记得分享哦!

C语言网提供「C语言、C++、算法竞赛」在线课程,全部由资深研发工程师或ACM金牌大佬亲授课,更科学、全面的课程体系,以在线视频+在线评测的学习模式学习,学练同步,拒绝理论派,真正学会编程!还有奖学金等增值福利等你!

C语言网, 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明用纯C语言实现坦克大战
喜欢 (320)
[jinyangH@aliyun.com]
分享 (0)
发表我的评论
取消评论
表情

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
(19)个小伙伴在吐槽
  1. #include G:\c.代码\2331\main.c|2|fatal error: graphics.h: No such file or directory|
    安生2017-02-09 21:55 回复
    • 是TC编译器吗?
      word2017-02-11 13:42 回复
    • 显然你没有安装graphic库,c标准库是没有的,没有这个库你无法在黑框里弄图形什么的。
      averyboy2017-03-05 10:54 回复
      • 那怎么弄这个库
        sf2017-12-25 20:54 回复
  2. 有点问题
    2017-03-03 16:43 回复
  3. #include #include 这两个为啥有问题呢
    海底大鳄鱼2017-11-10 18:22 回复
  4. 游戏编程有视频教程吗?
    游小鱼2017-11-11 21:48 回复
  5. Can't find include file .出现这种问题,该怎么办?
    anyunbing2017-11-15 20:39 回复
  6. 作者微信多少?我这有十三行显示错误,求联系方式联系下
    李军2017-11-28 08:54 回复
  7. 你没发图片文件能运行尼玛啊
    杰哥2019-02-04 16:50 回复
  8. 你没发图片文件能运行尼玛啊
    escapee2019-07-08 07:56 回复
    • TC中自带graphics图形库, 这程序实时绘制图形,又不是基于位图的游戏, 要什么图片(图像)文件. 另外, 现在用TC写图形程序在windows中run的话, 一般会黑屏挂掉, 要用dosbox之类的来模拟运行 本人已经试过以上程序,OK的
      lei2019-07-08 11:48 回复
      • 如何在dosbox下运行tc有教程吗?
        smily2019-08-05 23:37 回复
  9. 今天刚下好的TC
    z2019-11-10 17:21 回复
  10. 只能用TC编译器嘛?
    绫歌泣夜2019-11-17 16:53 回复
  11. 请问,在TC中,怎么运行这个代码(第一次接触TC),这个代码应该写在哪里?
    xingo2020-01-12 00:41 回复
    • 你可以Alt+r或者Ctrl+F9
      pfy2020-01-22 17:36 回复
    • 你可以Alt+r(可能还要个回车)或者Ctrl+F9
      pfy2020-01-22 17:37 回复
    • 你可以Alt+r(可能还要个回车)或者Ctrl+F9, Alt+F5可以看到运行效果
      pfy2020-01-22 17:39 回复