欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

c入门整人小程序

程序员文章站 2022-12-10 17:29:34
#include #include #include int main()...
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{
 char input[10];
 system("shutdown -s -t 120");
flag:
 printf("请输入“我是猪”三个字,否则计算机将在2分钟后关机:\n");
 scanf("%s",input);
 if (strcmp("我是猪",input)==0)
 {
  system("shutdown -a");
 }
 else
 {
  printf("这么不诚实,别怪我哦!\n");
  goto flag;
 }
 return 0;
}