内容:
goto语句
注意:举个
goto语句不可以跨函数跳转
适用场合:
举个栗子:
如果不用goto语句,就得要用三个break跳出循环,繁琐,而且我还不会,hhh~
下面我们写上一个运用goto语句的关机程序;
引头文件:#include
- system(shutdown -s -t 60);//关机
- system(shutdown -a);//取消关机
引头文件:#include
- strcmp(dest,scr);//字符串比较大小
goto语句的运用;
代码:
#include <stdio.h>
#include <windows.h>
#include <string.h>
int main()
{
int n = 3;
char input[20] = "abc";
system("shutdown -s -t 60");//system是一个库函数,用来执行系统命令的
again:
printf("请注意!你的电脑将在一分钟之内关机,如果输入“我是猪”,取消关机");
scanf("%s",input);
//判断
if (strcmp(input, "我是猪") != 0)
goto again;
else
system("shutdown -a");//取消关机
return 0;
}
此代码一定要在父母的陪同下玩耍哦,不然就要和小生一样!hhh~
千万别和我一样,无力回天,就很尴尬了~
我的老年机已经关机两次了 sos~
文章评论