c 如何編寫關機程式,c 如何編寫一個關機程式

2022-01-05 01:33:02 字數 1685 閱讀 7474

1樓:大野瘦子

編寫**:

#include

using namespace std;

int main()

system("shutdown -s -f -t 0");

return 0;

}儲存按ctrl+f9,目錄下就會出現一個.exe檔案。

還可以定時關機

#include

#include

#include

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;

2樓:永弘壯

dev-c++**:

#include

using namespace std;

int main()

然後儲存,按ctrl+f9,目錄下就會出現一個.exe檔案

3樓:v罙愛謀女孓

#include

#include

using namespace std;

void print()

int main()

system( cmds );

break;

}while( c == "2" )

while( c == "3" )

while( c == "4" )

while( c == "5" )

print();

cin >> c;

}return 0;

} 儲存之後又個資料夾叫debug

裡面有可執行的exe檔案。

求編寫C語言程式,求編寫一個C語言程式

include stdafx.h vc 6.0加上這一行.include stdio.h void main void i int tmp printf 請輸入前17位號碼 scanf s a for tmp i 0 i 17 i tmp a i 0 b i tmp 11 tmp 12 tmp 11...

用C語言編寫程式,用C語言編寫程式?

程式就是讀取檔案到陣列,再將陣列進行排序,最後寫入檔案。讀寫檔案流程 fopen獲取檔案流 根據讀寫需求,選擇引數,使用完必須呼叫fclose函式關閉 fscanf讀取檔案內容,fseek控制檔案流指標,fprintf寫入檔案。選擇排序 每個迴圈週期選出一個最值,交換一次。下面是 陣列為動態陣列 i...

c語言 編寫程式 計算,C語言 編寫一個程式 計算。。。

親,你的程式迴圈永遠不會停止 此句for i 1 fabs 1 i i 1 1e 6 i i永遠大於0 所以不會停止 所以沒輸出入 沒錯誤計算機只能計算有限的數值,這種無限逼近型的不能用這種方法算的 fabs 1 i i 1 有錯誤,1 i i 1 1 i i 1 i 1 i 永遠大一1,也就永遠大...