美文网首页C语言
C语言定时关机小程序(附源码)

C语言定时关机小程序(附源码)

作者: 368b2befcaed | 来源:发表于2019-05-29 14:01 被阅读0次

    C语言定时关机小程序

    这个关机小程序的核心是对system函数的应用,大家可能感觉学了很久的C依然对着黑色的控制台程序,而system函数就比较意思了,其实说白了system函数执行的是windows中的dos命令,窗口设置和关机的操作都是,而unix和linux是shell命令,大家有兴趣的可以了解下,不说了,上源码!

    #include<stdio.h> #include<string.h> #include<stdlib.h>intmain(void){charcmd[20]="shutdown -s -t ";chart[5]="0";intc;

    system("title C语言定时关机程序"); //设置cmd窗口标题system("mode con cols=50 lines=30"); //窗口设置 system("color 84"); //可以任意设定颜色system("date /T");system("TIME /T");

    printf("----------- C语言定时关机程序 -----------n");printf("1.实现10分钟内的定时关闭计算机n");printf("2.立即关闭计算机n");printf("3.注销计算机n");printf("0.退出系统n");printf("-------------------------------------n");

    scanf("%d",&c);switch(c) {case1:printf("你想在多少秒后自动关闭计算机?(0~600)n");scanf("%s",t);system(strcat(cmd,t));break;case2:system("shutdown -p");break;case3:system("shutdown -l");break;case0:break;default:printf("Error!n");}system("pause");return0;}

    相关文章

      网友评论

        本文标题:C语言定时关机小程序(附源码)

        本文链接:https://www.haomeiwen.com/subject/ilsjtctx.html