我来我网
https://5come5.cn
 
您尚未 登录  注册 | 菠菜 | 软件站 | 音乐站 | 邮箱1 | 邮箱2 | 风格选择 | 更多 » 
 

« 1 23» Pages: ( 1/3 total )
本页主题: 我写的俄罗斯方块代码以及可执行文件 显示签名 | 打印 | 加为IE收藏 | 收藏主题 | 上一主题 | 下一主题

kangtalc



性别: 帅哥 状态: 该用户目前不在线
头衔: 揍敌客·奇犽
等级: 希望之光
家族: 万人坑恋影部落
发贴: 1723
威望: 5
浮云: 1113
在线等级:
注册时间: 2005-09-21
最后登陆: 2008-06-29

5come5帮你背单词 [ dizzy /'dizi/ a. 头昏眼花的 ]


我写的俄罗斯方块代码以及可执行文件

很久以前就想写个俄罗斯方块出来耍了,但是一直没有去干这件事情.
这两天苦心研究,终于还是写出来了,查了很多资料,也看了很多别人的代码,但是大家用的算法各不一样,我看得眼花缭乱的.好累啊.算法其实还是很简单的,就是图形界面有点点烦人,大家看看吧

有问题的同学请PM我

Copy code
/* 程序名称: 俄罗斯方块
* 所用编译器: Turboc 2.0
* 作者:Killua
* 学校:电子科技大学
* 专业班级:04级软件工程2班
* 版本:1.0
*/

/* 头文件 */
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
#include<time.h>
#include<alloc.h>
#include<dos.h>
#include<graphics.h>

/* ----------定义游戏中用到的常量-----------------*/
#define BGI
#define size 20/* 方块的边长 */
#define TRUE 1
#define FALSE 0
#define ROWS 20     /* 游戏板的行数 */
#define COLS 10     /* 游戏板的列数 */
#define UP 0x48     /* 光标键上的扫描码 */
#define DOWN 0X50   /* 光标键下的扫描码 */
#define RIGHT 0x4d   /* 光标键下的扫描码 */
#define LEFT 0x4b   /* 光标键左的扫描码 */
#define ESC 0x01     /* ESC键的扫描码   */
#define P 0x19     /* 键P的扫描码     */
#define TIMER 0x1c   /* 时间中断号 */
#ifdef __cplusplus
#define __CPPARGS ...
#else
#define __CPPARGS
#endif
/*-------------------------------------------------*/


/*--------------用到的全局变量---------------------*/

int board[COLS][ROWS];   /* 20行10列的游戏板       */
int x;             /* 方块的在面板中的横坐标   */
int y;             /* 方块的在面板中的纵坐标   */
int NO = 3;         /* 初始方块序号           */
int buf[4];         /* 存储要消掉的行数标号     */
int TimerCounter;     /* 计时器               */
int speed = 1;       /* 游戏速度             */
int lines = 0;       /* 玩家消掉的行数         */
int scores = 0;       /* 玩家得到分数           */

/*-------------------------------------------------*/

/*--------------存储19种方块的图形数据-------------*/
struct shape{
    int xy[8];
    int COLOR;
    int next;
  }shapes[19]=
{
    /*   坐标系为:   -1 0 1 2 x
      *           -3
      *           -2
      *           -1
      *           0
      *           y
      */



    /*   ■
      *   ■
      *   ■
      *   ■
      */
    {0,-3,0,-2,0,-1,0,0,GREEN,1},

    /* ■ ■ ■ ■ */
    {-1,-1,0,-1,1,-1,2,-1,GREEN,0},

    /* ■ ■
      * ■ ■
      */
    {0,-2,0,-1,1,-2,1,-1,LIGHTBLUE,2},

    /* ■
      * ■
      * ■ ■
      */
    {0,-3,0,-2,0,-1,1,-1,LIGHTRED,4},

    /* ■ ■ ■
      * ■
      */
    {0,-1,0,-2,1,-2,2,-2,LIGHTRED,5},

      /* ■ ■
      *   ■
      *   ■
      */
    {0,-2,1,-2,1,-1,1,0,LIGHTRED,6},

          /*   ■
      * ■ ■ ■
      */
    {-1,-1,0,-1,1,-1,1,-2,LIGHTRED,3},

        /*   ■
      * ■ ■ ■
      */
    {0,-2,-1,-1,0,-1,1,-1,LIGHTGREEN,8},

    /* ■
      * ■ ■
      * ■
      */
    {0,-2,0,-1,0,0,1,-1,LIGHTGREEN,9},

    /* ■ ■ ■
        *   ■
      */
    {-1,-1,0,-1,1,-1,0,0,LIGHTGREEN,10},

        /*   ■
      * ■ ■
        *   ■
      */
    {0,-2,0,-1,0,0,-1,-1,LIGHTGREEN,7},

        /*   ■ ■
      * ■ ■
      */
    {-1,-1,0,-1,0,-2,1,-2,YELLOW,12},

    /* ■
      * ■ ■
        *   ■
      */
    {0,-2,0,-1,1,-1,1,0,YELLOW,11},

    /* ■ ■
        *   ■ ■
      */
    {-1,-2,0,-2,0,-1,1,-1,BROWN,14},

        /*   ■
      * ■ ■
      * ■
      */
    {0,-1,0,0,1,-2,1,-1,BROWN,13},

    /*   ■
      *   ■
  * ■ ■
      */
    {0,-1,1,-3,1,-2,1,-1,LIGHTCYAN,16},

    /* ■
      * ■ ■ ■
      */
    {0,-2,0,-1,1,-1,2,-1,LIGHTCYAN,17},

    /* ■ ■
      * ■
      * ■
      */
    {0,-2,0,-1,0,0,1,-2,LIGHTCYAN,18},
   
    /* ■ ■ ■
          *   ■
    */
    {-1,-1,0,-1,1,-1,1,0,LIGHTCYAN,15}
};

/*-------------------------------------------------*/



/*--------------函数的声明-------------------------*/
void init();                             /* 初始化*/
void init_graph();                         /* 初始化图形 */
void init_board();                         /* 初始化界面 */
void drawboard();                           /* 画界面 */
void draw();                             /* 画出全部的界面包括文字 */
void interrupt ( *oldhandler)(__CPPARGS);           /* 系统中断函数 */
void interrupt newhandler(__CPPARGS);             /* 系统中断函数 */
void interrupt newhandler();                   /* 系统中断函数 */
void show_sqr(int,int,int);                   /* 在游戏板中显示当前方块 */
void show_next(int);                         /* 显示下一个方块 */
int is_full(int);                         /* 判断是否有满的行 */
void del_lines(int);                         /* 删除满的行 */
void update_board(int);                       /* 更新游戏板的数据 */
void update_image(int);                       /* 更新游戏板的图形 */
void update();                             /* 更新玩家的得分和消去的行数 */
int move(int);                           /* 移动方块 */
void play();                             /* 玩函数*/
int confilict();                           /* 判断方块是否与游戏板的左右上下边界以及已经存在方块的地方发生冲突 */
int get_speed(int,int);                       /* 当前的游戏速度 */
int getkey();                             /* 获得键盘扫描码 */

/*-------------------------------------------------*/


/*--------------函数的详细定义---------------------*/
/*---------------------init_graph-------------------------------*/
void init_graph(void)
{
  int gdriver=DETECT,gmode;
  registerbgidriver(EGAVGA_driver);
  initgraph(&gdriver, &gmode, "c:\\turboc2");
}
/*----------------------------------------------------*/



/*-----------------drawboard--------------------------*/
void drawboard()                                 /* 画游戏板 */
{
int space = 5;
setfillstyle(XHATCH_FILL, YELLOW);
bar(120, 50-space-1, 200, 50-1);
bar(120, 130+1, 200, 130+space+1);
bar(120-space-1, 50-space-1, 120-1, 130+space+1);
bar(200+1, 50-space-1, 200+space+1,130+space+1);
bar(320, 50-space-1, 520, 50-1);
bar(320, 450+1, 520, 450+space+1);
bar(320-space-1, 50-space-1, 320-1, 450+space+1);
bar(520+1, 50-space-1, 520+space+1, 450+space+1);
}
/*----------------------------------------------------*/



/*------------------drawtext-------------------------*/
void drawtext()                                   /* 写一些提醒文字 */
{
setcolor(RED);
outtextxy(365,10,"Tetrics");
outtextxy(360,30,"---Programmed by Liu Chao");
outtextxy(110,30,"Preview Block:");
outtextxy(120,180,"Speed:");
outtextxy(120,210,"Score:");
outtextxy(120,240,"Lines:");
setcolor(GREEN);
outtextxy(60,310,"Press \*ESC\* to exit...");
outtextxy(90,330,"or \*p\* to pause.");
setcolor(BLUE);
outtextxy(40,390,"Author: Liu Chao");
outtextxy(40,410,"Email:kangtalc@163.com");
outtextxy(40,430,"QQ:53408770");
outtextxy(40,450,"Software School of UESTC ");
setcolor(GREEN);
}
/*----------------------------------------------------*/



/*------------------draw--------------------------*/

void draw()
{
  drawboard();
  drawtext();
}
/*---------------------------------------------------------*/

/*---------------------init_board--------------------------*/
void init_board()
{
int i,j;
for (i=0; i<COLS; i++)
  for (j=0; j<ROWS; j++)
  board[i][j] = 0;

for (i=0; i<4; i++)
      buf[i] = 0;
}
/*----------------------------------------------------*/



/*-------------------init----------------------------*/
void init()
{
  clrscr();
  init_board();
  init_graph();
}

/*----------------------------------------------------*/


/*--------------------SetTimer--------------------------*/
void SetTimer(void interrupt (*IntProc)(__CPPARGS))
{
oldhandler=getvect(TIMER);
disable();
setvect(TIMER,IntProc);
enable();
}

/*-----------------KillTimer----------------------------*/
void KillTimer()
{
disable();
setvect(TIMER,oldhandler);
enable();
}
/*----------------------------------------------------*/


/*----------------------------------------------------*/
void interrupt newhandler()
{
TimerCounter++;
oldhandler();
}
/*----------------------------------------------------*/


/*------------------is_full----------------------------*/
int is_full(int y)
{
int i,j;
int line = 0;                 /* 初始化消去的行数为0 */
int full = TRUE;        
int *p = buf;
for (i=y; i>=y-3; i--)
{
    for (j=0; j<=9; j++)
  {
    if(board[j][i] == 0)
        full=FALSE;
  }
  if (full)
    {
        line++;             /* 如果有行消去则line+1 */
        *(p++) = i;           /* 存储要消去的行标识 */
    }
    else full = TRUE;
}
if (line)                 /* 根据一次消去的行数得不同的得分*/
  {
  lines += line;
  switch (line)
  {
    case 1:scores+=20;break;
    case 2:scores+=50;break;
    case 3:scores+=90;break;
    case 4:scores+=140;
  }
  return line;
    }
return FALSE;
}
/*----------------------------------------------------*/


/*-------------------update_board-----------------------*/
void update_board(int line)                     /* 更改面板的数据,使面板数据依次想下移动 */
{
int i;
int n;
int full_y;
int scan_y;
for (i=line-1; i>=0; i--)
  {
  full_y = buf[i];
  for (n=0; n<10; n++)
    board[n][full_y] = 0;
   
  for (n=0;n<10;n++)
      for (scan_y=full_y-1; scan_y>=0; scan_y--)
        if (board[n][scan_y] == 0)
          continue;
        else
        {
            board[n][scan_y] = 0;
            board[n][scan_y+1] = 1;
          }
  }
}
/*----------------------------------------------------*/



/*------------------update_image----------------------*/
void update_image(int line)                     /* 更改游戏板的图象,消去满了的行 */
{
int i,del_y;
unsigned line_size;
void *del_image = NULL;
void *left_image = NULL;
line_size = imagesize(320,50,520,70);

for (i=line-1; i>=0; i--)
  {
    del_y = buf[i];
  del_image = malloc(line_size);
  left_image = malloc(line_size*del_y);
  if((del_image==NULL) || (left_image==NULL))
      {
        closegraph();
      printf("not enough memory./n");
      exit(1);
    }
   
    getimage(320, del_y*size+50, 520, 50+(del_y+1)*size, del_image);
    getimage(320, 50, 520, 50+del_y*size, left_image);
    putimage(320, del_y*size+50, del_image, XOR_PUT);
    putimage(320, 70, left_image, COPY_PUT);
    free(del_image);
    free(left_image);
  }
}
/*----------------------------------------------------*/




/*------------------del_lines------------------------*/
void del_lines(int line)                                 /* 删掉满的行 */
{
  update_board(line);
  update_image(line);
}
/*---------------------------------------------------------*/

/*-----------------show_sqr-----------------------------*/
void show_sqr(int x,int y,int NO)                           /* 画出当前的图形 */
{
int realx,realy,i;
for (i=0; i<=7; i+=2)
{
  realx = (x+shapes[NO].xy[i])*size+320;                     /* 取得真实的横坐标 */
  realy=(y+shapes[NO].xy[i+1])*size+50;                       /* 取得真实的纵坐标 */    
  bar(realx+1,realy+1,realx+size-1,realy+size-1);
}
}
/*----------------------------------------------------*/



/*-------------------show_next-----------------------*/
void show_next(int NO)                                   /* 画出下一个图形 */
{
int realx,realy,i;
for (i=0; i<=7; i+=2)
{
  realx = (1+shapes[NO].xy[i])*size+120;                       /* 取得真实的横坐标 */
  realy=(3+shapes[NO].xy[i+1])*size+50;                       /* 取得真实的纵坐标 */  
  bar(realx+1,realy+1,realx+size-1,realy+size-1);
 
}
}
/*----------------------------------------------------*/




/*--------------------update---------------------------*/
void update()                           /* 更新玩家的得分,游戏速度和消去的行数 */
{
char *str=NULL;
struct viewporttype vp;
getviewsettings(&vp);
setviewport(120+textwidth("SPEED:"), 150, 120+textwidth("SPEED:OO") + 40, 250,1);
clearviewport();
setcolor(GREEN);
sprintf(str,"%d",speed);
outtextxy(4,30,str);
sprintf(str,"%d",scores);
outtextxy(4,60,str);
sprintf(str,"%d",lines);
outtextxy(4,90,str);
setviewport(vp.top,vp.left,vp.right,vp.bottom,1);
}
/*----------------------------------------------------*/



/*------------------get_speed----------------------------*/
int get_speed(int scores,int lines)             /* 根据玩家的分数和消去的行数变更速度 */
{
  if(scores>5000||lines>200)return 6;
  if(scores>4000||lines>180)return 5;
  if(scores>3000||lines>120)return 4;
  if(scores>2000||lines>80)return 3;
  if(scores>1000||lines>40)return 2;
  return 1;
}
/*----------------------------------------------------*/



/*--------------------getkey-------------------------*/
int getkey()                             /* 返回键盘扫描码 */
{
union REGS r;
r.h.ah=0;
int86(0x16,&r,&r);
return r.h.ah;
}
/*----------------------------------------------------*/



/*---------------------confilict---------------------*/
int confilict(int x,int y,int NO)                     /* 看方块是否与游戏板的内容不冲突 */
{
int i;
for(i=0; i<=7; i+=2)
{  
  if((shapes[NO].xy[i]+x<0) || (shapes[NO].xy[i]+x>9))     /* 与游戏板左右边界冲突 */
    return TRUE;
  if(shapes[NO].xy[i+1]+y > 19)                   /* 与游戏板的下边界冲突 */
    return TRUE;
  if(board[shapes[NO].xy[i]+x][shapes[NO].xy[i+1]+y])     /* 与游戏版内已经存在方块的地方冲突 */
    return TRUE;
}
return FALSE;
}
/*----------------------------------------------------*/




/*-------------------move----------------------------*/
int move(int direction)                           /* 移动方块的函数 */
{
  switch (direction){
  case RIGHT:                                 /* 方块向右移动 */
    if( !confilict(x+1, y, NO) )
      {
          setfillstyle(SOLID_FILL, BLACK);
          show_sqr(x, y, NO);
          delay(100);
          ++x;
        setfillstyle(SOLID_FILL, shapes[NO].COLOR);
          show_sqr(x, y, NO);
          }
          break;
  case LEFT :                                     /* 方块向左移动 */
    if( !confilict(x-1 , y, NO) )
      {
        setfillstyle(SOLID_FILL, BLACK);
        show_sqr(x, y, NO);
        delay(100);
        --x;
        setfillstyle(SOLID_FILL, shapes[NO].COLOR);
        show_sqr(x, y, NO);
      }
      break;
case DOWN :                                     /* 方块向下移动 */
    if( !confilict(x, y+1, NO) )
    {
      setfillstyle(SOLID_FILL, BLACK);
      show_sqr(x, y, NO);
      delay(100);
      ++y;
      setfillstyle(SOLID_FILL, shapes[NO].COLOR);
      show_sqr(x, y, NO);
      break;
      }
      else
        return 0;
case UP:                                       /* 改变方块到下一个形态*/
    if( !confilict(x, y, shapes[NO].next) )
    {
      setfillstyle(SOLID_FILL, BLACK);
      show_sqr(x, y, NO);
      NO = shapes[NO].next;
      setfillstyle(SOLID_FILL, shapes[NO].COLOR);
      show_sqr(x, y, NO);
      }
      break;
case P:
    getch();
      break;
case ESC :
    closegraph();
      exit(0);
  }
}
/*----------------------------------------------------*/



/*------------------play----------------------------*/
void play()
{
int direction;
int n;
int i;
int line=0;
int over=FALSE;
draw();
update();
SetTimer(newhandler);
while (!over)
{
x=4;
y=3;
setfillstyle(SOLID_FILL, shapes[NO].COLOR);
speed = get_speed(scores,lines);
show_sqr(x, y, NO);                           /*显示当前的图形*/
srand(time(NULL));
n=rand()%19;
setfillstyle(SOLID_FILL, shapes[n].COLOR);
show_next(n);                               /*随机的产生图形并且显示*/
while (1)
{
mm:
    while(!kbhit())                           /*如果没有敲键盘*/
  {
  if(TimerCounter>16-get_speed(scores,lines)&&!confilict(x,y+1,NO))/* 如果在时间超过方块的停留时间就自动下落,并且判断下落会不会发生冲突,如果不会发生冲突的话就下落*/
      {
        TimerCounter=0;
        move(DOWN);
    }
  else if(confilict(x,y+1,NO))                   /* 如果这个时候下落会冲突的话就跳到ep */
      goto ep;
  }
 
  direction=getkey();                           /* 如果有接受键盘信息 */
  move(direction);                             /* 就执行键盘的行动 */
  if (TimerCounter<16-get_speed(scores,lines))
      goto mm;                                 /* 此时的时间还是小于方块的时间间隔依然就跳转到mm*/
  if (TimerCounter>16-get_speed(scores,lines) && !confilict(x,y+1,NO))/* 此时的时间大于方块的跳转时间并且下移不发生冲突就下移*/
    {
      TimerCounter=0;
      move(DOWN);
    }

ep: if(!move(DOWN))                           /* 如果不能够向下移动 */
    {
      for(i=0;i<=7;i+=2)
      board[x+shapes[NO].xy[i]][y+shapes[NO].xy[i+1]]=1;/*将方块占据的空间置为1*/
      NO=n;
      setfillstyle(SOLID_FILL, BLACK);
      show_next(NO);                         /*消去随机产生的方块 */
    if ((line=is_full(y))!= 0)                       /*如果有消去的行就消去*/
          {
            update();
            del_lines(line);
          }
      break;
  }
}
  for(i=0;i<10;i++)
    if(board[i][0])
      over=TRUE;           /*检查游戏是否结束*/
}
moveto(280,200);setcolor(GREEN);
outtext("GameOver!");getch();
}
/*----------------------------------------------------*/



/*--------------------main---------------------------*/
int main()
{
  init();
  play();
  KillTimer();
  closegraph();
  return 0;
}
/*----------------------------------------------------*/


下面是可执行文件:


[ 此贴被kangtalc在2006-08-16 11:16重新编辑 ]
本帖最近评分记录:
  • 浮云:10 (by 独飞の孤心) | 理由: 厚皮菜厂
  • 顶端 Posted: 2006-08-15 23:05 | [楼 主]
    ford





    性别: 保密 状态: 该用户目前不在线
    等级: 希望之光
    发贴: 1619
    威望: 0
    浮云: 1124
    在线等级:
    注册时间: 2004-12-27
    最后登陆: 2009-09-27

    5come5帮你背单词 [ television /'telivi3ən/ n. (缩)tv,电视(机) ]


    楼主厉害,暂
    顶端 Posted: 2006-08-15 23:10 | [1 楼]
    love★she★



    性别: 保密 状态: 该用户目前不在线
    头衔: 甄爱萱桦
    等级: 栋梁之材
    家族: 萱甄嘉园
    发贴: 537
    威望: 0
    浮云: 1185
    在线等级:
    注册时间: 2006-04-06
    最后登陆: 2006-08-15

    5come5帮你背单词 [ impart /im'pa:t/ vt. 把…给予,传授给 ]


    不错啊
    界面也很好
    顶端 Posted: 2006-08-15 23:13 | [2 楼]
    3000



    性别: 帅哥 状态: 该用户目前不在线
    头衔: 杀人放火诈骗抢劫
    等级: 荣誉会员
    家族: RX胜利十一人
    发贴: 9170
    威望: 3
    浮云: 1163
    在线等级:
    注册时间: 2004-12-01
    最后登陆: 2013-04-30

    5come5帮你背单词 [ honesty /'onisti/ n. 诚实,忠实 ]


    perfect code ,the beauty of it only the men who coded it can fell as the father love baby
    顶端 Posted: 2006-08-15 23:14 | [3 楼]
    zsl1984



    性别: 帅哥 状态: 该用户目前不在线
    头衔: 名花有主,我来松土
    等级: 前途无量
    家族: 东北一家人
    发贴: 9375
    威望: 0
    浮云: 1123
    在线等级:
    注册时间: 2005-05-16
    最后登陆: 2007-08-30

    5come5帮你背单词 [ cripple /'kripl/ n. 罪犯;a. 犯罪的 ]


    挺好玩的,剛剛GAME OVER,樓主加油啊
    顶端 Posted: 2006-08-15 23:19 | [4 楼]
    sparkhunter



    性别: 帅哥 状态: 该用户目前不在线
    等级: 人见人爱
    家族: 吃呆一族
    发贴: 2194
    威望: 0
    浮云: 1671
    在线等级:
    注册时间: 2006-02-21
    最后登陆: 2021-05-28

    5come5帮你背单词 [ essential /i'senəl/ a. 根本的,本质的,最重要的,必要的,必不可少的;n. (pl.)本质,要点 ]


    虽然我也是学软件的,
    却一直没有信心去学C。
    佩服楼主的毅力。
    顶端 Posted: 2006-08-15 23:24 | [5 楼]
    sikanglu



    性别: 帅哥 状态: 该用户目前不在线
    头衔: 挖墙角的机会都不给!!
    等级: 荣誉会员
    家族:
    发贴: 8760
    威望: 0
    浮云: 458
    在线等级:
    注册时间: 2005-10-20
    最后登陆: 2010-07-30

    5come5帮你背单词 [ legend /'led3ənd/ n. 传说,传奇,传奇文学,传奇性人物或事件 ]


    楼住强悍!
    顶端 Posted: 2006-08-15 23:24 | [6 楼]
    liyaan



    性别: 帅哥 状态: 该用户目前不在线
    等级: 希望之光
    发贴: 1695
    威望: 0
    浮云: 1144
    在线等级:
    注册时间: 2005-04-05
    最后登陆: 2009-05-27

    5come5帮你背单词 [ bridegroom /'braidgrum/ n. 新郎 ]


    刚耍了会,不错哈!
    顶端 Posted: 2006-08-15 23:25 | [7 楼]
    newton



    性别: 保密 状态: 该用户目前不在线
    头衔: Messi + Aimar
    等级: 人见人爱
    家族: 考研俱乐部
    发贴: 2770
    威望: 1
    浮云: 1777
    在线等级:
    注册时间: 2004-11-27
    最后登陆: 2017-06-08

    5come5帮你背单词 [ for /fo:, fə/ prep. 就…而言;conj. 因为,由于…的缘故 ]


    来鼓励下LZ
    顶端 Posted: 2006-08-15 23:25 | [8 楼]
    83039216





    性别: 保密 状态: 该用户目前不在线
    等级: 鹤立鸡群
    家族: 考研俱乐部
    发贴: 1302
    威望: 0
    浮云: 1133
    在线等级:
    注册时间: 2005-11-17
    最后登陆: 2010-11-22

    5come5帮你背单词 [ combine /kəm'bain/ v. (使)结合,(使)合并,(使)化合 ]


    楼主厉害,刚下了玩
    顶端 Posted: 2006-08-15 23:26 | [9 楼]
    newton



    性别: 保密 状态: 该用户目前不在线
    头衔: Messi + Aimar
    等级: 人见人爱
    家族: 考研俱乐部
    发贴: 2770
    威望: 1
    浮云: 1777
    在线等级:
    注册时间: 2004-11-27
    最后登陆: 2017-06-08

    5come5帮你背单词 [ safeguard /'seifga:d/ vt. 保护,保卫;n. 保卫(措施) ]


    对了。.学校不是"成都电子科大"
    顶端 Posted: 2006-08-15 23:29 | [10 楼]
    sundy



    性别: 保密 状态: 该用户目前不在线
    头衔: 一失足成千古恨
    等级: 字幕组
    发贴: 2599
    威望: 0
    浮云: 790
    在线等级:
    注册时间: 2005-09-19
    最后登陆: 2008-03-09

    5come5帮你背单词 [ quiz /kwiz/ n. 小测验,小考,猜谜或问答节目;vt. 进行测验,盘问 ]


    lz是强人啊,希望能继续努力,增加项目经验哈
    顶端 Posted: 2006-08-15 23:33 | [11 楼]
    sobbld



    性别: 保密 状态: 该用户目前不在线
    等级: 希望之光
    发贴: 1568
    威望: 0
    浮云: 1215
    在线等级:
    注册时间: 2005-01-10
    最后登陆: 2009-04-24

    5come5帮你背单词 [ litter /'litə/ n. 杂乱的废物;v. 乱丢,乱摊 ]


    这样的人才继续关注中。。
    顶端 Posted: 2006-08-15 23:34 | [12 楼]
    kangtalc



    性别: 帅哥 状态: 该用户目前不在线
    头衔: 揍敌客·奇犽
    等级: 希望之光
    家族: 万人坑恋影部落
    发贴: 1723
    威望: 5
    浮云: 1113
    在线等级:
    注册时间: 2005-09-21
    最后登陆: 2008-06-29

    5come5帮你背单词 [ merit /'merit/ n. 优点,长处,功劳,价值;v. 应得,值得 ]


    Quote:
    引用第10楼newton于2006-08-15 23:29发表的:
    对了。.学校不是"成都电子科大"


    那是???
    顶端 Posted: 2006-08-15 23:34 | [13 楼]
    newton



    性别: 保密 状态: 该用户目前不在线
    头衔: Messi + Aimar
    等级: 人见人爱
    家族: 考研俱乐部
    发贴: 2770
    威望: 1
    浮云: 1777
    在线等级:
    注册时间: 2004-11-27
    最后登陆: 2017-06-08

    5come5帮你背单词 [ stabilize // v. (使)稳定,(使)稳固 ]


    Quote:
    引用第13楼kangtalc于2006-08-15 23:34发表的:


    那是???

    学校全名:"电子科大"
    顶端 Posted: 2006-08-15 23:37 | [14 楼]
    « 1 23» Pages: ( 1/3 total )
    我来我网·5come5 Forum » 程序员之家

    Total 0.012213(s) query 5, Time now is:05-15 00:17, Gzip enabled
    Powered by PHPWind v5.3, Localized by 5come5 Tech Team, 黔ICP备16009856号