#include <stdio.h>
#include <string.h>
#include <windows.h>
int main()
{
char arr[20]={0};
system("shutdown -s -t 60");
printf("您的电脑将于六十秒后关机\n如果不想电脑关机\n请输入我是猪\n");
again:
printf("请输入>");
scanf("%s",&arr);
if(strcmp(arr,"我是猪")==0)
{
system("shutdown -a");
}
else
{
goto again;
}
return 0;
}
相关文章
- 11-13微信小程序-设计指南
- 11-13健康申报程序
- 11-13python练习程序(c100经典例15)
- 11-13python练习程序(c100经典例20)
- 11-13python练习程序(c100经典例19)
- 11-13python练习程序(c100经典例13)
- 11-13python练习程序(c100经典例17)
- 11-13python练习程序(c100经典例14)
- 11-13python练习程序(c100经典例21)
- 11-13python练习程序(c100经典例16)