关于做图
在easyx库下 比如:字符A 从屏幕顶端移动到底端(直线移动或者随机降落) 那么这个A 到底部后 还是最初的A吗 是A一直在移动 还是在不停的刷屏 不断的产生新
A
#include <graphics.h> #include <time.h> #include <conio.h> int main(void) { // 设置随机函数种子 srand((unsigned) time(NULL)); // 初始化图形模式 initgraph(640, 480); // 设置背景色为蓝色 setbkcolor(BLUE); // 用背景色清空屏幕 cleardevice(); // 设置绘图色为红色 setcolor(RED); setfont(36, 18, L"Courier"); for(int row=5;row<450;row+=20) { outtextxy(rand()%630,row,rand()%93+33); outtextxy(rand()%630,row,rand()%93+33); outtextxy(rand()%630,row,rand()%93+33); outtextxy(rand()%630,row,rand()%93+33); outtextxy(rand()%630,row,rand()%93+33); outtextxy(rand()%630,row,rand()%93+33); outtextxy(rand()%630,row,rand()%93+33); outtextxy(rand()%630,row,rand()%93+33); outtextxy(rand()%630,row,rand()%93+33); outtextxy(rand()%630,row,rand()%93+33); outtextxy(rand()%630,row,rand()%93+33); outtextxy(rand()%630,row,rand()%93+33); outtextxy(rand()%630,row,rand()%93+33); outtextxy(rand()%630,row,rand()%93+33); Sleep(1000); cleardevice(); } getch(); // 关闭图形模式 closegraph(); return 0; }