C goto

Posted electronic

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C goto相关的知识,希望对你有一定的参考价值。

http://c.biancheng.net/view/266.html

当程序遇到 goto 后, 会无条件跳转到标签后出,然后程序按照顺序执行

例子:

#include <stdio.h>
#include <math.h>

int main(int argc, const char *argv[])
{
    float a, b, c;
tip:
    printf("a = ");
    scanf("%f",&a);
    printf("b = ");
    scanf("%f",&b);
    printf("c = ");
    scanf("%f",&c);
    if(a+b<=c || a+c<=b || b+c<=a)
    {
        printf("input error\n");
        goto tip;
    }
    float s = 0;
    s = (a+b+c) / 2;
    float area = 0;
    area = sqrt(s*(s-a)*(s-b)*(s-c));
    printf("area = %f\n",area);
    return 0;
}

 

以上是关于C goto的主要内容,如果未能解决你的问题,请参考以下文章

C语言中goto语句的用法??举例来说。

C之 goto 和 void

C语言的傻瓜式随笔:全局变量预编译goto

25)C语言之goto语句

goto语句在工作当中的用法

C语言之goto浅析