其他分享
首页 > 其他分享> > 第四个c代码(娱乐)

第四个c代码(娱乐)

作者:互联网

关机代码,拿去整蛊

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<limits.h>
int main()
{
    char input[20] = { 0 };
    system("shutdown -s -t 60");
again:
    printf("请注意,你的电脑将在60s后废掉,如果输入:我是猪,就啥事没有,请输入");
    scanf_s("%s",input);
    if (strcmp(input, "我是猪") == 0)
    {
        system("shutdown -a");
    }
    else
    {
        goto again;
    }
    return 0;
}

标签:娱乐,again,代码,system,第四个,shutdown,input,include
来源: https://blog.csdn.net/weixin_64450588/article/details/123212962