• 关机代码


    有意思的代码:

    #include<stdio.h>
    #include<string.h>
    #include<stdlib.h>
    int print()
    {
        printf(" ╪╪╪╪╪╪╧╧╧╧╧╧╧╧╪╪╪╪╪╪
    ");
        printf("╔═══╧╧C语言关机程序 ╧╧═══╗
    ");
        printf("║※1.实现10分钟内的定时关闭计算机 ║
    ");
        printf("║※2.立即关闭计算机  ║
    ");
        printf("║※3.注销计算机  ║
    ");
        printf("║※0.退出系统  ║
    ");
        printf("╚═══════════════════╝
    ");
        return 0;
    }
    int main()
    {
        system("title C语言关机程序");//设置cmd窗口标题
        system("mode con cols=48 lines=25");//窗口宽度高度
        system("color 0B");
        system("date /T");
        system("TIME /T");
        char cmd[20]="shutdown -s -t ";
        char t[5]="0";
        print();
        int c;
        scanf("%d",&c);
        getchar();
        switch(c)
        {
            case 1:printf("您想在多少秒后自动关闭计算机?(0~600)
    ");
                   scanf("%s",t);
                   system(strcat(cmd,t));
                   break;
            case 2:system("shutdown -p");break;
            case 3:system("shutdown -l");break;
            case 0:break;
            default:printf("Error!
    ");
        }
        system("pause");
        exit(0);
    }
  • 相关阅读:
    Git之常用的命令操作
    Linux之创建777权限的文件
    Mysql union
    读取MySQL数据表字段信息
    Linux下mysql启动失败
    TP5之使用layui分页样式
    使用Bootstrap实现表格列的显示与隐藏
    MySQL之避免插入重复数据
    Linux命令之清空当前文件
    opensns入门
  • 原文地址:https://www.cnblogs.com/123tang/p/5874939.html
Copyright © 2020-2023  润新知