C语言编写飞机大战

#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
#include<Windows.h>
int score = 0;
int plane_col, plane_row;
int bullet_col,bullet_row;
int area_height, area_width;
int enemy_col, enemy_row;
int enemy_vh, enemy_vv;
int a[100][100] = {
0 };
void gotoxy(int x, int y) {
HANDLE handle = GetStdHandle(STD_OUTPUT_HANDLE);
COORD pos;
pos.X = x;
pos.Y = y;
SetConsoleCursorPosition(handle, pos);
}
void HideCursor() {
CONSOLE_CURSOR_INFO cursor_info = {
1,0 };
SetConsoleCursorInfo(GetStdHandle(STD_OUTPUT_HANDLE), &cursor_info);
}
void startup()
{
area_height = 20;
area_width = 30;
plane_col =