随笔分类 - 小项目
摘要:整理文件发现以前写的C语言猜数游戏 1-效果演示 2-程序 #include <stdio.h> #include <stdlib.h> #include <time.h> int main() { srand(time(0)); int number = rand() % 100 + 1; //生
阅读全文
摘要:刷B站看到的,做个玩玩。IDE:Visual Studio 2022。依赖EsayX图形库 1-效果 2-程序 /* 链表流星雨单文件版本 依赖EsayX图形库 */ #include <stdio.h> #include <stdlib.h> #include <stdbool.h> #inclu
阅读全文
摘要:整理文件发现以前写的定时关机小程序(Windows下) 1-效果 2-程序 #include <stdio.h> #include <stdlib.h> #include <string.h> int main() { //界面 printf(" 自动关机小程序 \n"); printf("您想在几
阅读全文
摘要:记一次课设 GitHub:https://github.com/tao355667/HanoiGame 面向对象程序设计实践-汉诺塔 IDE:Visual Studio 2022 依赖库:EsayX 效果预览: 参考资料: [1] 童晶,丁海军,金永霞,周小芹编著. 面向“工程教育认证”计算机系列课
阅读全文