C语⾔else分号的作⽤,ifelse的⼤括号作⽤
萌新⼩⽩求带
2019-06-21 00:12
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");
}
writeline方法的作用}
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");
}
}
}
}
或号可以然⼀样的代码得出不同的输出
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论