首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴hanhanaaaaa的代码贴全部
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
#include<conio.h>

typedef struct snake
{
int a;
int b;
struct snake *u;
struct snake *n;
}snake,*snake1;
......................
阅读全部 | 2020年3月10日 08:27
#include
#include
#include
int width = 50;
int hight =20;
int position_x, position_y;
int bullet_x,bullet_y;
int enemy_x,enemy_y;
int score;
void updatestart() // 初始化数据
{
position_x = hight / 2;
......................
阅读全部 | 2020年3月10日 08:23
1
hanhanaaaaa