#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命令實現的。