日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

黑客帝国中比较酷炫的代码雨的实现

發布時間:2023/12/31 编程问答 34 豆豆
生活随笔 收集整理的這篇文章主要介紹了 黑客帝国中比较酷炫的代码雨的实现 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

提示:文章寫完后,目錄可以自動生成,如何生成可參考右邊的幫助文檔


前言

提示:黑客帝國酷炫的代碼雨的簡單實現,可以了解一下,日后可能會有用哦


提示:以下是本篇文章正文內容,下面案例可供參考

頭文件" 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);} }

大道至簡,相信你們可以把它改進得更炫酷!

總結

以上是生活随笔為你收集整理的黑客帝国中比较酷炫的代码雨的实现的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。