今日学习了一个有趣的小程序,也是第一次写博客,关机小程序如下:
#define _CRT_SECURE_NO_WARNINGS 1
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <windows.h>
#include <time.h>
int main()
{
char input[10]={0};
system("shutdown -s -t 60");
again:
printf("您的电脑将在一分钟后关机,请输入:停止,取消关机!\n");
scanf("%s",&input);
if(strcmp(input,"停止")== 0)
{
system("shutdown -a");
}
else
{
goto again;
}
return 0;
}
然后win+r,输入shell:startup
就会进入这个界面
将C语言的exe文件添加进去,就可以执行一分钟关机小程序了