1. 程式人生 > >整人程式碼(我是豬)

整人程式碼(我是豬)

#include "stdio.h"
#include "string.h"
#include "stdlib.h"

#define _CRT_SECURE_NO_WARNINGS

int user_scanf()
{
	int i = 0;
	char ch[100] = { 0 };
	printf("\n請輸入\"我是豬\":");
	gets(ch);
	if (strcmp("我是豬", ch) == 0)
	{
		system("shutdown -a");
		i = 1;
		printf("\n已取消自動關機");
	}
	else { printf("請重新輸入,否則裝置倒計時結束,將自動關機:"); }
	return i;
}
int main()
{
	printf("請輸入:我是豬。\n否則你的裝置將進入60秒倒計時關機。");
	system("shutdown -s -t 60");
	while (1)
	{
		user_scanf();    //此行多餘,會導致函式執行兩次。
		int j = user_scanf();
		if (j == 1)break;
	}
	system("pause");
	return 0;
}