为了账号安全,请及时绑定邮箱和手机立即绑定

if else的大括号作用

为什么要括起来啊

正在回答

3 回答

using System;

using System.Collections.Generic;

using System.Text;


namespace Test

{

    class Program

    {

        static void Main(string[] args)

        {

            int x = 5;

            int y = 6;

            if (x >= y)

            {

                if (x >= 5)

                {

                    Console.WriteLine("5");

                }

            }

            else

                if (y >= 6)

                {

                    Console.WriteLine("6");

                }

            

                else

                    Console.WriteLine("7");

            

        }

    }

}





using System;

using System.Collections.Generic;

using System.Text;


namespace Test

{

    class Program

    {

        static void Main(string[] args)

        {

            int x = 5;

            int y = 6;

            if (x >= y)

            {

                if (x >= 5)

                {

                    Console.WriteLine("5");

              

            }

            else

                if (y >= 6)

                {

                    Console.WriteLine("6");

                }

            

                else

                    Console.WriteLine("7");

            }

        }

    }

}

或号可以然一样的代码得出不同的输出

1 回复 有任何疑惑可以回复我~

一条的语句是以分号结尾。如果不括。跟if 或者else后面的只有一条语句是属于他们的。其他的就不是。

而且,else是与其最近的if匹配

0 回复 有任何疑惑可以回复我~

if(){

//if()里面为真,执行if语句,,否则执行else里面的语句

//大括号是为了表明if里面有哪些语句

//if下面只有一条命令,就可以不用大括号

}

else{

}

1 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
C#开发轻松入门
  • 参与学习       254045    人
  • 解答问题       1459    个

本门课程是C#语言的入门教程,将带你轻松入门.NET开发

进入课程

if else的大括号作用

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信