鱼C论坛

 找回密码
 立即注册
楼主: yuesezhenmei

[技术交流] c语言飞机大战简易编码

  [复制链接]
发表于 2019-8-17 18:31:42 | 显示全部楼层
wowo
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2019-8-17 23:07:21 | 显示全部楼层
好厉害啊大佬
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2019-8-17 23:47:56 From FishC Mobile | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2019-8-18 10:43:25 | 显示全部楼层
看看
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2019-8-18 11:30:33 | 显示全部楼层
看看学习一下
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2019-8-18 13:39:00 | 显示全部楼层
厉害
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2019-8-18 13:39:43 | 显示全部楼层
厉害了我的老哥
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2019-8-18 13:40:35 | 显示全部楼层
l l l
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2019-8-18 22:14:19 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2019-8-21 13:39:05 From FishC Mobile | 显示全部楼层
看看
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2019-8-21 14:04:06 | 显示全部楼层
okok
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2019-8-21 15:12:31 | 显示全部楼层
哈哈
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2019-8-21 15:25:33 From FishC Mobile | 显示全部楼层
……
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2019-8-21 16:11:10 | 显示全部楼层
学习学习
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2019-8-21 18:58:30 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2019-8-21 19:03:21 | 显示全部楼层
不知道为何报错了,如下。。。
025.c: In function 'bullets':
025.c:51:23: error: '(struct GAME *)&bullet' is a pointer; did you mean to use '->'?
                 bullet.x=0;
                       ^
                       ->
025.c:52:23: error: '(struct GAME *)&bullet' is a pointer; did you mean to use '->'?
                 bullet.y=0;
                       ^
                       ->
025.c:53:23: error: '(struct GAME *)&bullet' is a pointer; did you mean to use '->'?
                 bullet.shape='I';
                       ^
                       ->
025.c: In function 'hide':
025.c:65:37: error: '(struct GAME *)&obstacles' is a pointer; did you mean to use '->'?
                         if(obstacles.x==bullet[j].x&&obstacles.y==bullet[j].y)
                                     ^
                                     ->
025.c:65:63: error: '(struct GAME *)&obstacles' is a pointer; did you mean to use '->'?
                         if(obstacles.x==bullet[j].x&&obstacles.y==bullet[j].y)
                                                               ^
                                                               ->
025.c:67:42: error: '(struct GAME *)&obstacles' is a pointer; did you mean to use '->'?
                                 obstacles.x=0;
                                          ^
                                          ->
025.c: In function 'planemove':
025.c:320:38: error: '(struct GAME *)&obstacles' is a pointer; did you mean to use '->'?
                         Pos(obstacles.x,obstacles.y);
                                      ^
                                      ->
025.c:320:50: error: '(struct GAME *)&obstacles' is a pointer; did you mean to use '->'?
                         Pos(obstacles.x,obstacles.y);
                                                  ^
                                                  ->
025.c:322:34: error: '(struct GAME *)&obstacles' is a pointer; did you mean to use '->'?
                         obstacles.y++;
                                  ^
                                  ->
025.c:323:37: error: '(struct GAME *)&obstacles' is a pointer; did you mean to use '->'?
                         if(obstacles.y>28)
                                     ^
                                     ->
025.c:325:42: error: '(struct GAME *)&obstacles' is a pointer; did you mean to use '->'?
                                 obstacles.x=rand()%56;
                                          ^
                                          ->
025.c:326:34: error: '(struct GAME *)&obstacles' is a pointer; did you mean to use '->'?
                         obstacles.y=rand()%8;
                                  ^
                                  ->
025.c:327:37: error: '(struct GAME *)&obstacles' is a pointer; did you mean to use '->'?
                         if(obstacles.x%2!=0)
                                     ^
                                     ->
025.c:329:42: error: '(struct GAME *)&obstacles' is a pointer; did you mean to use '->'?
                                 obstacles.x=obstacles.x-1;
                                          ^
                                          ->
025.c:329:54: error: '(struct GAME *)&obstacles' is a pointer; did you mean to use '->'?
                                 obstacles.x=obstacles.x-1;
                                                      ^
                                                      ->
025.c: In function 'obstacle':
025.c:348:26: error: '(struct GAME *)&obstacles' is a pointer; did you mean to use '->'?
                 obstacles.x=rand()%56;
                          ^
                          ->
025.c:349:26: error: '(struct GAME *)&obstacles' is a pointer; did you mean to use '->'?
                 obstacles.y=rand()%14;
                          ^
                          ->
025.c:350:29: error: '(struct GAME *)&obstacles' is a pointer; did you mean to use '->'?
                 if(obstacles.x%2!=0)
                             ^
                             ->
025.c:352:34: error: '(struct GAME *)&obstacles' is a pointer; did you mean to use '->'?
                         obstacles.x=obstacles.x-1;
                                  ^
                                  ->
025.c:352:46: error: '(struct GAME *)&obstacles' is a pointer; did you mean to use '->'?
                         obstacles.x=obstacles.x-1;
                                              ^
                                              ->
025.c: In function 'obstaclehide':
025.c:367:46: error: '(struct GAME *)&obstacles' is a pointer; did you mean to use '->'?
                         if(temp->x==obstacles.x&&temp->y==obstacles.y)
                                              ^
                                              ->
025.c:367:68: error: '(struct GAME *)&obstacles' is a pointer; did you mean to use '->'?
                         if(temp->x==obstacles.x&&temp->y==obstacles.y)
                                                                    ^
                                                                    ->
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2019-8-21 22:18:42 | 显示全部楼层
学习一下!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2019-8-22 09:38:15 | 显示全部楼层
Devil愚钝 发表于 2019-8-21 19:03
不知道为何报错了,如下。。。
025.c: In function 'bullets':
025.c:51:23: error: '(struct GAME *)&bu ...

可以 发图片吗  你这样 我有点尴尬  我当时自己写  现在有点忘记了  发布了图片我qq1346502061  有什么问题 随便说  关于c语言的,你这个问题  我当时 弄了 很多malloc  不知道时那个 我要图片
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2019-8-22 09:42:07 | 显示全部楼层
Devil愚钝 发表于 2019-8-21 19:03
不知道为何报错了,如下。。。
025.c: In function 'bullets':
025.c:51:23: error: '(struct GAME *)&bu ...

难道 你改动了 ? 结构体指针要用->  不是 .
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2019-8-22 10:22:48 | 显示全部楼层
1
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-16 16:53

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表