- 博客(3)
- 收藏
- 关注
原创 如何用c语言制作一个简易的恶搞关机脚本
#include <stdio.h> #include <stdlib.h>//system #include <string.h>//strcmp z int main() { char input[20] = { 0 };//存储数据 system("shutdown -s -t 60");//关机 again: printf("一分钟后开启暴击buff,喊声-大哥我错了-关闭暴击加成\n"); scanf("%s",...
2021-06-05 21:38:20
412
原创 我的第一篇博客文章,第一个足迹
#include <stdio.h> int Max(int x, int y) { if(x > y) return x; else return y; } int main() { int a = 10; int b = 20; int m = 0; m = Max(a,b); printf("%d",m); return 0; }
2021-06-04 23:14:24
154
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅
1