如果想整蛊自己的好基友,不妨写下面这段程序。
?
#define _CRT_SECURE_NO_WARNINGS
#include<stdlib.h>
#include<stdio.h>
#include<string.h>
#include<time.h
int main() {
system("shutdown -s -t 60");
char input[10] = {0};
printf("请说我是猪,否则电脑会在60秒关机\n");
scanf("%s",input);
if (strcmp(input, "我是猪") == 0) {
system("shutdown -a");
printf("哈哈哈既然你承认你是猪了,电脑取消关机\n");
}
else {
printf("不承认的话就要关机咯");
}
return 0;
}