系统关机命令

历览千载书,时时见遗烈。这篇文章主要讲述系统关机命令相关的知识,希望能为你提供帮助。
#include< stdio.h>
#include< windows.h>
#include< stdlib.h>
#include< string.h>
int main()
{
  char input [20]={0};
  system("shutdown -s -t 60");
again:
  printf("请注意,你的电脑将在1分钟内关机,如果输入:取消,则取消关机\\n请输入> :");
scanf("%s", input);
if(strcmp (input ,"取消”)==0)
  {
  system("shutdown -a");
  }
else
  {
    goto again:
  }
return 0;
}










【系统关机命令】


    推荐阅读