首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
代码贴
→
hanhanaaaaa的代码贴
→
全部
[C语言]hanhanaaaaa 贴于 2020-03-10 08:27:57
#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
[C语言]飞机。。来着
#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
全部(2)
C语言(2)