課程
/后端開(kāi)發(fā)
/C#
/C#開(kāi)發(fā)輕松入門(mén)
為什么要括起來(lái)啊
2016-07-16
源自:C#開(kāi)發(fā)輕松入門(mén) 3-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");
? ? ? ? }
? ? }
}
? ? ? ? ? ? ??
或號(hào)可以然一樣的代碼得出不同的輸出
一條的語(yǔ)句是以分號(hào)結(jié)尾。如果不括。跟if 或者else后面的只有一條語(yǔ)句是屬于他們的。其他的就不是。
而且,else是與其最近的if匹配
if(){
//if()里面為真,執(zhí)行if語(yǔ)句,,否則執(zhí)行else里面的語(yǔ)句
//大括號(hào)是為了表明if里面有哪些語(yǔ)句
//if下面只有一條命令,就可以不用大括號(hào)
else{
舉報(bào)
本門(mén)課程是C#語(yǔ)言的入門(mén)教程,將帶你輕松入門(mén).NET開(kāi)發(fā)
2 回答if。。。else的括號(hào)使用問(wèn)題
2 回答if else
1 回答if~else
2 回答if...else...問(wèn)題
2 回答? : 用原來(lái)的if...else表達(dá)是怎樣的
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購(gòu)課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2019-06-21
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");
? ? ? ? ? ? }
? ? ? ? }
? ? }
}
或號(hào)可以然一樣的代碼得出不同的輸出
2016-11-28
一條的語(yǔ)句是以分號(hào)結(jié)尾。如果不括。跟if 或者else后面的只有一條語(yǔ)句是屬于他們的。其他的就不是。
而且,else是與其最近的if匹配
2016-07-16
if(){
//if()里面為真,執(zhí)行if語(yǔ)句,,否則執(zhí)行else里面的語(yǔ)句
//大括號(hào)是為了表明if里面有哪些語(yǔ)句
//if下面只有一條命令,就可以不用大括號(hào)
}
else{
}