If-else语句

来源:4-6 循环结构之while循环

逆态度一光

2016-10-12 07:16

怎样区分多重if-else语句与if-else嵌套

写回答 关注

2回答

  • cattylux4089027
    2016-10-13 01:34:57
    已采纳

    1. 多重if。。。else。。。就是进行不相关联的多个选择:

    example:

    if(condition 1){ 执行1}

    else if (conditon 2){ 执行2} 

    else if(condition 3){ 执行3}

    else...... 以此类推

    2.嵌套if...else...,是在一个大condtion下进行另外若干个sub-conditon,执行sub-conditon需要首先满足你的big condition

    example:

    if ( BIG CONDITION 1 ){

    if (sub-condition 1){执行1}

    else if (sub-condition 2){执行2}

    else if(sub-condition 3){执行3}

    ......以此类推

    }

    这是我对你问题的理解,希望有帮到你:)


    逆态度一光

    Thank you

    2016-10-20 14:56:21

    共 2 条回复 >

  • 慕粉4169219
    2016-10-12 11:24:37

    判断是否是多个选择条件  多个选择条件就是多重if-else

C语言入门

C语言入门视频教程,带你进入编程世界的必修课-C语言

926206 学习 · 20797 问题

查看课程

相似问题

if-else语句

回答 1

if -else 语句

回答 3

if else语句

回答 1

if-else语句

回答 1

if-else语句

回答 1