if else的大括号作用
为什么要括起来啊
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");
}
}
}
}
或号可以然一样的代码得出不同的输出
举报