当前位置:   article > 正文

一个很好玩的自动关机小程序_我是猪 java自动关机程序

我是猪 java自动关机程序

源代码:
#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;
}

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/268190
推荐阅读
相关标签
  

闽ICP备14008679号