您已经了解到 C 支持通常的逻辑条件从数学:
您可以使用这些条件来针对不同的决策执行不同的操作。
C 有以下条件语句:
if
指定要执行的代码块,如果指定条件满足true
else
指定要执行的代码块,如果相同的条件false
else if
指定要测试的新条件,如果第一个条件是false
switch
指定要执行的许多替代代码块使用if
语句指定条件满足时要执行的代码块true
。
if (
condition) {
// block of code to be executed if the condition is true
}
注意if
是小写字母。大写字母(If 或 IF)将产生错误。
在下面的示例中,我们测试两个值以确定 20 是否大于 18。如果条件是true
,打印一些文本:
我们还可以测试变量:
在上面的例子中我们使用了两个变量,X和y,测试 x 是否大于 y(使用>
运算符)。由于 x 为 20,y 为 18,并且我们知道 20 大于 18,因此我们在屏幕上打印 "x is greater than y"。
使用else
语句指定条件满足时要执行的代码块false
。
if (
condition) {
// block of code to be executed if the condition is true
} else {
// block of code to be executed if the condition is false
}
int time = 20;
if (time < 18) {
printf("Good day.");
} else {
printf("Good evening.");
}
// Outputs "Good evening."
亲自试一试 »
在上面的例子中,时间(20)大于18,所以条件是false
。正因为如此,我们继续else
条件并打印到屏幕"Good evening"。如果时间小于18,程序将打印"Good day"。
使用else if
如果第一个条件是,则指定新条件的语句false
。
if (
condition1) {
// block of code to be executed if condition1 is true
} else if (
condition2) {
// block of code to be executed if the condition1 is false and condition2 is true
} else {
// block of code to be executed if the condition1 is false and condition2 is false
}
int time = 22;
if (time < 10) {
printf("Good morning.");
} else if (time < 20) {
printf("Good day.");
} else {
printf("Good evening.");
}
// Outputs "Good evening."
亲自试一试 »
在上例中,时间 (22) 大于 10,因此第一个条件是false
。下一个条件,在else if
的声明,也是false
,所以我们继续else
条件自条件1和条件2既是false
- 并打印到屏幕"Good evening"。
但是,如果时间是 14,我们的程序将打印"Good day."
这个例子展示了如何使用if..else
判断一个数是正数还是负数:
int myNum = 10; // Is this a positive or negative number?
if (myNum > 0) {
printf("The value is a positive number.");
} else if (myNum < 0) {
printf("The value is a negative number.");
} else {
printf("The value is 0.");
}
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!