赞
踩
写一个C语言代码,能够在60秒内关机,输入esc则取消关机。
#include <stdio.h>//输入输出函数库
#include <string.h>//字符串函数库
#include <stdlib.h>//system函数的头文件
///关机代码
int main()
{
char arr[20] = { 0 };
system("shutdown -s -t 60");
again:
printf("你的电脑60s后将关机,输入:“esc”,则取消关机\n");
int o = scanf("%s", arr);
if (strcmp(arr, "esc") == 0)
{
printf("取消关机");
system("shutdown -a");
}
else
{
goto again;
}
return 0;
}
解释后续补上
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。