在编程中,“且”通常用逻辑与运算符 `&&` 来表示。它用于判断两个条件是否同时成立。当两个条件都为 `true` 时,`&&` 运算返回 `true`;否则,返回 `false`。以下是一些使用 `&&` 的示例:
基本逻辑与运算
```c
int a = 5;
int b = 10;
int c = a > 0 && b > 0; // c 的值为 1 (true)
```
在条件语句中使用
```c
int age = 18;
if (age >= 18 && age < 25) {
printf("Adult\n");
} else {
printf("Minor\n");
}
```
链式逻辑与运算
```c
int x = 1, y = 2, z = 3;
if (x > 0 && y > 0 && z > 0) {
printf("All numbers are positive\n");
}
```
总结起来,`&&` 是逻辑与运算符,用于连接两个或多个条件,要求所有条件都为 `true` 时,整个表达式才为 `true`。