跳转到内容

C# 入门/决策

来自维基教科书,开放的书,为一个开放的世界

If 语句

[编辑 | 编辑源代码]

C# 中的 if 语句与其他语言一样简单。if 语句的语法如下

if(condition){
// Statements
}

这里我们可以检查一些表达式是否为真或假。例如 5 > 4 为真,但 4 > 5 为假。

if(5 > 4){
Console.WriteLine("Yes five is still greater than 4");
}

Else 部分

[编辑 | 编辑源代码]

在 else 部分中,如果 if 条件为假,我们可以给出将执行的语句。

if(5 > 4){
Console.WriteLine("Yes five is still greater than four");
} else {
Console.WriteLine("Oh No! five is now no longer greater than four");
}
华夏公益教科书