其他分享
首页 > 其他分享> > C语言写一个一分钟内关机代码

C语言写一个一分钟内关机代码

作者:互联网

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
    char a[10] = { 0 };                  //system控制的是电脑中的cmd
    system("shutdown -s -t 60");        //system的头文件为stdlib.h shutdown-s的意思是关机-t是时间
    aaaa:
    printf("请注意你的电脑将在六十秒内关机,输入我是猪就停止关机。\n请输入:");
    scanf("%s", &a);
    if (strcmp(a, "我是猪") == 0)      //strcmp的作用是比较字符串 头文件为string.h
    {
        printf("你确实是猪");
        system("shutdown -a");
    }
    else
    {
        printf("在给你一次机会");
        goto aaaa;                  //goto函数的使用 直接跳到aaaa的位置
    }
    return 0;
}

标签:关机,system,一分钟,C语言,aaaa,shutdown,printf,include
来源: https://blog.csdn.net/s3088784247/article/details/121319882