gpt4 book ai didi

c - 通过c中的系统函数关闭系统(windows 8.1)

转载 作者:太空宇宙 更新时间:2023-11-04 04:29:59 25 4
gpt4 key购买 nike

#include<stdlib.h>

int main()
{
system("date");
system("c:\\windows\\system32\\shutdown /r");
}

我尝试使用 C 中的 system() 库运行此代码来关闭并显示当前日期,但没有成功。

最佳答案

尝试使用此程序关闭或关闭您的 Windows 7/8/8.1 PC。

#include<stdio.h>
#include<stdlib.h>
main()
{
char in;
printf("Do you want to shutdown your computer now (y/n)\n");
scanf("%c",&in);
if (in == 'y' || in == 'Y')
system("C:\\WINDOWS\\System32\\shutdown /s");
return 0;
}

以上代码将在 30 秒后关闭系统。要立即关机,请使用 "C:\\WINDOWS\\System32\\shutdown/s/t 0"。要重新启动,请使用 /r 而不是/s

关于c - 通过c中的系统函数关闭系统(windows 8.1),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37360636/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com