|
吾爱游客
发表于 2015-11-2 00:03
1、申 请 I D :匿名丶
2、个人邮箱:1328519974@qq.com
3.原创技术文章: C语言实现定时关机
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{ int num,a;
char cmd[20]="shutdown -s -t ";
char t[10];
system("mode con cols=54 lines=20");//窗口宽度高度
system("color 1E");
system("title C语言关机程序"); //屏幕标题
//屏幕前景色和背景色
printf("\n");
printf("===================C语言关机程序==================\n");
printf("\n");
printf("-------------------1:实现一小时内的延时关闭计算机\n");
printf("\n");
printf("-------------------2:立即关闭计算机\n");
printf("\n");
printf("-------------------3:注销当前用户\n");
printf("\n");
printf("-------------------4:重新启动\n");
printf("\n");
printf("-------------------0:退出系统\n");
scanf("%d",&num); //输入选择的数值 捕获.JPG
if(num==1)
{ system("cls");
printf("请输入关机秒数0-36000\n");
scanf("%s",&t);
system(strcat(cmd,t)); //字符串连接函数连接函数
printf("取消关闭请按5\n");
scanf("%d",&a);
if(a==5)
system("shutdown -a"); //取消关闭
}
if(num==2) system("shutdown -s -t 1"); //立即关闭计算机
if(num==3) system("shutdown -l"); //注销当前用户
if(num==4) system("shutdown -r -t 1"); //重新启动
if(num==0) exit(0); //退出系统
system("pause"); //冻结屏幕
return 0;
}
|
|
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
|
|
|
|