赞
踩
源代码:
#include “stdafx.h”
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main()
{
char input[10] = { 0 };
system(“shutdown -s -t 60”);
again:
printf(“电脑将在一分钟之内关机!如果输入:“我是猪”,就取消关机!\n请输入:>\n”);
scanf("%s", input);
if (strcmp(input, “我是猪”)== 0)
{
system(“shutdown -a”);
}
else
{
goto again;
}
return 0;
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。