目录
目标
让你的朋友输入指定信息,否则电脑关机。
实现关机
在电脑的命令提示符中,如果输入:
shutdown -s -t 60
则代表在60s后电脑将关机。
取消关机
在电脑的命令提示符中,如果输入:
shutdown -a
则代表电脑取消关机程序。
system()函数
system()可以直接作用于电脑的操作系统
使用system()函数之前,需要引入库函数<stdlib.h>。
#include <stdlib.h>
system("shutdown -s -t 60");
strcmp()函数
用于比较两个字符串是否相等。(不能直接用==)
使用strcmp()函数之前,需要引入库函数<string.h>。
#include <string.h>
strcmp(str1,str2);
实现代码
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
char arr[20] = { 0 };
system("shutdown -s -t 60");
again:
printf("除非输入:我是佩奇,否则一分钟后关机。\n");
scanf("%s", arr);
if (strcmp(arr, "我是佩奇") == 0)
{
system("shutdown -a");
printf("电脑已解除关机\n");
}
else
{
goto again;
}
return 0;
}
伪装
在Release环境下,生产Release文件,改名为test.exe。
直接发给别人即可。
标签:关机,游戏,电脑,system,shutdown,include,strcmp From: https://blog.csdn.net/hsy1603914691/article/details/142300643