本文概述
goto语句在C中被称为跳转语句。顾名思义,goto用于将程序控件转移到预定义标签。 goto语句可用于针对特定条件重复代码的某些部分。它也可以用来打破多个循环,这是使用单个break语句无法完成的。但是,如今避免使用goto了,因为它使程序的可读性和复杂性降低。
句法:
label:
//some part of the code;
goto label;
转到示例
让我们看一个使用C语言使用goto语句的简单示例。
#include <stdio.h>
int main()
{
int num, i=1;
printf("Enter the number whose table you want to print?");
scanf("%d", &num);
table:
printf("%d x %d = %d\n", num, i, num*i);
i++;
if(i<=10)
goto table;
}
输出:
Enter the number whose table you want to print?10
10 x 1 = 10
10 x 2 = 20
10 x 3 = 30
10 x 4 = 40
10 x 5 = 50
10 x 6 = 60
10 x 7 = 70
10 x 8 = 80
10 x 9 = 90
10 x 10 = 100
什么时候应该使用goto?
最好使用goto的唯一条件是当我们需要同时使用单个语句中断多个循环时。考虑以下示例。
#include <stdio.h>
int main()
{
int i, j, k;
for(i=0;i<10;i++)
{
for(j=0;j<5;j++)
{
for(k=0;k<3;k++)
{
printf("%d %d %d\n", i, j, k);
if(j == 3)
{
goto out;
}
}
}
}
out:
printf("came out of the loop");
}
0 0 0
0 0 1
0 0 2
0 1 0
0 1 1
0 1 2
0 2 0
0 2 1
0 2 2
0 3 0
came out of the loop
评论前必须登录!
注册