效果很炫酷
可以自己调颜色
这个效果特别好
if (_kbhit()) break; // 按任意键退出
代码
#include <easyx.h> #include<stdio.h> #include <time.h> #include <conio.h> int main() { // 设置随机种子 srand((unsigned)time(NULL)); // 初始化图形模式 initgraph(640, 480); int x, y; char c; settextstyle(16, 8, _T("微软雅黑")); // 设置字体 // 设置颜色 settextcolor(RGB(rand() % 256, rand() % 256, rand() % 256)); //设置在for循环里面画的线的颜色 setlinecolor(BLACK); for (int i = 0; i <= 479; i++) { // 在随机位置显示三个随机字母 for (int j = 0; j < 3; j++) { x = rand() % 639; y = rand() % 479; c = (rand() % 26) + 65;//+65,变成大写 outtextxy(x, y, c); } // 画线擦掉一个像素行 //for循环画线 line(0, i, 639, i); Sleep(10); if (i >= 479) i = -1; if (_kbhit()) break; // 按任意键退出 } // 关闭图形模式 closegraph(); return 0; }
Code over!