LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 960|回复: 2

字符下落的小程序,大家小看一下!!

[复制链接]
发表于 2002-11-9 20:17:31 | 显示全部楼层 |阅读模式
大家看看这个,是个字符下落的小程序~
#include <dos.h>
#include <stdio.h>
#include <conio.h>
#include <time.h>
#include <stdlib.h>

const int MAX=20;
int ch[MAX][3];

void main()
{
  int i;
  time_t t;
  srand((unsigned)time(&t));

  for (i=0;i<MAX;i++)
    ch[0]=99;

  while(!kbhit())
  {
    clrscr();

    for (i=0;i<MAX;i++)
      if (ch[0]>25)
      {
ch[0]=1;
ch[1]=rand() % 80 + 1;
ch[2]=97+rand() % 26;
break;
      }

    for (i=0;i<MAX;i++)
      if (ch[0]<=35)
      {
gotoxy(ch[1],ch[0]++);
printf("%c",ch[2]);
      }
    delay(100);
  }
}
 楼主| 发表于 2002-11-9 22:26:36 | 显示全部楼层
i am sorry,  maybe the pro should be complied by TC!
in Windows!

^_^
发表于 2002-11-22 10:58:22 | 显示全部楼层

Re: 字符下落的小程序,大家小看一下!!

TC is in DOS!;)
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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