C語言寫的簡單的定時關機程式

來源:互聯網
上載者:User
#include<stdio.h>#include<string.h>#include<stdlib.h>int main(){    char cmd[20]="shutdown -s -t ";    char t[5]="0";    int c;    system("title C語言關機程式");  //設定cmd視窗標題    system("mode con cols=48 lines=25");  //視窗寬度高度     system("color f0");  //可以寫成 red 調出顏色組    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) {        case 1:            printf("您想在多少秒後自動關閉電腦。(0~600)\n");            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!\n");    }    system("pause");    return 0;}

這個程式雖然實用價值不大,但是可以讓我們瞭解 system() 函數。

在Windows下,system() 函數可以執行 dos 命令;在 Unix/Linux 中,可以執行Shell。

請在Windows下運行上面的程式。程式中對dos介面的設定和關機功能都是通過dos命令實現的。
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.