在C语言中,可以使用`system()`函数来执行系统命令,包括关机命令。以下是一个简单的C语言程序,用于实现立即关机和定时关机功能:
立即关机
```c
include include int main() { printf("1. 立即关机\n"); printf("2. 定时关机\n"); printf("3. 退出程序\n"); int choice; scanf("%d", &choice); switch (choice) { case 1: system("shutdown -s"); // 立即关机 break; case 2: system("shutdown -i"); // 打开定时关机设置界面 break; case 3: printf("正在退出程序..."); Sleep(2000); return 0; default: printf("输入错误,请重新输入!\n"); break; } system("pause"); return 0; } ``` 定时关机 ```c include include include include int main() { char input = {0}; unsigned int time1 = 0; time1 = (unsigned int) time(NULL); printf("计算机将在60秒后关机,如果不想关,输入“我是猪”。\n"); while (1) { printf("剩余时间: %u 秒\n", 60 - time1); scanf("%s", input); if (strcmp(input, "我是猪") == 0) { system("shutdown -a"); // 取消关机 break; } if (strcmp(input, "exit") == 0) { break; } time1 = (unsigned int) time(NULL); } return 0; } ``` 注意事项 执行关机命令可能需要管理员权限。 在编写和运行此类程序时,请确保不会对他人或系统造成不必要的麻烦。 对于更复杂的系统管理任务,建议使用更专业的工具或语言。权限问题:
安全性:
替代方案: