对于初学c的哥们 有时候是不是很想运用所学知识去恶搞一下朋友 装个逼哈哈
废话不多说附上代码
#include <iostream>
#include <string.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char** argv) {
char input[10] = {0};
system("shutdown -s -t 60");
again:
printf("请注意,你的电脑在1分钟内关机,如果输入:我是大傻逼,就取消关机\n请输入:");
scanf("%s",input) ;
if(strcmp(input,"我是大傻逼") == 0)
{
system("shutdown -a");
}
else
{
goto again;
}
return 0;
}
注:此时again 只是标记goto语句传送地点的意思,你也可以改成别的
还有编写的时候记得引用string.h文件哦
system函数里面写的是关机和结束关机的指令
小小恶搞怡情,别搞大了哈嘿嘿嘿