2025-03-20
This commit is contained in:
parent
525c0edd1d
commit
6b6d78b340
11
2207/C语言同步练习源码/6-预处理-1.c
Normal file
11
2207/C语言同步练习源码/6-预处理-1.c
Normal 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;
|
||||
}
|
@ -870,7 +870,19 @@ int main(){
|
||||
|
||||

|
||||
|
||||
```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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user