黑客帝国中比较酷炫的代码雨的实现
生活随笔
收集整理的這篇文章主要介紹了
黑客帝国中比较酷炫的代码雨的实现
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
提示:文章寫完后,目錄可以自動生成,如何生成可參考右邊的幫助文檔
前言
提示:黑客帝國酷炫的代碼雨的簡單實現,可以了解一下,日后可能會有用哦
提示:以下是本篇文章正文內容,下面案例可供參考
頭文件" test.h"代碼
#include<stdio.h> #include<time.h> #include<windows.h> #include<stdlib.h> 源文件"test.cpp" void set_color(int color) {SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), color); }int main() {int i, j;show_cursor(0);srand(time(NULL));//初始化結構體 for (i = 0; i < 100; i++){st[i].x = rand() % 80;st[i].y = rand() % 20;st[i].ch = rand() % (49 - 47) + 48;}while (1){for (i = 0; i < 100; i++){locationxy(st[i].x, st[i].y);set_color(0x2);putchar(st[i].ch);locationxy(st[i].x, st[i].y - 5);putchar(' ');st[i].y++;st[i].ch = rand() % (49 - 47) + 48;if (st[i].y - 5 >= 18){locationxy(st[i].x, st[i].y - 1);putchar(' ');locationxy(st[i].x, st[i].y - 2);putchar(' ');locationxy(st[i].x, st[i].y - 3);putchar(' ');locationxy(st[i].x, st[i].y - 4);putchar(' ');locationxy(st[i].x, st[i].y - 4);putchar(' ');}if (st[i].y > 23){st[i].x = rand() % 80;st[i].y = rand() % 20;}locationxy(st[i].x, st[i].y);set_color(0xA);putchar(st[i].ch);}Sleep(1);} }大道至簡,相信你們可以把它改進得更炫酷!
總結
以上是生活随笔為你收集整理的黑客帝国中比较酷炫的代码雨的实现的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: React第一天(尚硅谷视频)
- 下一篇: wget下载网络资源