2025-03-20

This commit is contained in:
smallkun 2025-03-20 10:29:51 +08:00
parent 525c0edd1d
commit 6b6d78b340
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,11 @@
#include <stdio.h>
#define MAXD(x, y) (x>y?x:y)
int main(){
int a, b;
scanf("%d %d", &a, &b);
//(1>2?1:2) 将MAXD替换成三目运算符
printf("%d \n", MAXD(a, b));
return 0;
}

View File

@ -870,7 +870,19 @@ int main(){
![image-20250227231302316](https://yp.smallkun.cn/markdown/image-20250227231302316.png!compress)
```c
#include <stdio.h>
#define MAXD(x, y) (x>y?x:y)
int main(){
int a, b;
scanf("%d %d", &a, &b);
//(1>2?1:2) 将MAXD替换成三目运算符
printf("%d \n", MAXD(a, b));
return 0;
}
```
### 预处理-2