// 坦克大战.cpp : Defines the entry point for the console application.
//思路简介:坦克大战采用的是面向对象的编程思想,其中离不开对类及线程的理解和使用
#include "stdafx.h"
#include<windows.h>
#include <process.h>
#include"pic_.h"
#define uchar unsigned char //坐标类型 屏幕上所有的坐标均为非负
#define uint unsigned int
//----全局变量
#d...