摘要: 整理文件发现以前写的C语言猜数游戏 1-效果演示 2-程序 #include <stdio.h> #include <stdlib.h> #include <time.h> int main() { srand(time(0)); int number = rand() % 100 + 1; //生 阅读全文
posted @ 2023-02-03 18:49 尚方咸鱼 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 刷B站看到的,做个玩玩。IDE:Visual Studio 2022。依赖EsayX图形库 1-效果 2-程序 /* 链表流星雨单文件版本 依赖EsayX图形库 */ #include <stdio.h> #include <stdlib.h> #include <stdbool.h> #inclu 阅读全文
posted @ 2023-02-03 17:14 尚方咸鱼 阅读(92) 评论(0) 推荐(0) 编辑