关机程序代码

#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<stdlib.h>
int main()
{
    char input[20] = { 0 };
    system("shutdown -s -t 60");
again:
    printf("电脑将在一分钟之内关闭,如果输入我是猪,将取消关机 请输入:>");
    scanf("%s", input);
    if ((strcmp(input, "我是猪")) == 0)
    {
        system("shutdown -a");
    }
    else
    {
        goto again;
    }
    getchar();
    getchar();
}

上一篇:Installed Build Tools revision 31.0.0 is corrupted. Remove and install again using the SDK Manager解决


下一篇:[WMCTF2020]Make PHP Great Again