forked from lxngoddess5321/C100
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path049.c
33 lines (33 loc) · 802 Bytes
/
049.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// 【程序49】
// 题目:#if #ifdef和#ifndef的综合应用。
// 1. 程序分析:
// 2.程序源代码:
#include "stdio.h"
#define MAX
#define MAXIMUM(x,y) (x>y)?x:y
#define MINIMUM(x,y) (x>y)?y:x
void main() {
int a = 10, b = 20;
#ifdef MAX
printf("\40: The larger one is %d\n", MAXIMUM(a, b));
#else
printf("\40: The lower one is %d\n", MINIMUM(a, b));
#endif
#ifndef MIN
printf("\40: The lower one is %d\n", MINIMUM(a, b));
#else
printf("\40: The larger one is %d\n", MAXIMUM(a, b));
#endif
#undef MAX
#ifdef MAX
printf("\40: The larger one is %d\n", MAXIMUM(a, b));
#else
printf("\40: The lower one is %d\n", MINIMUM(a, b));
#endif
#define MIN
#ifndef MIN
printf("\40: The lower one is %d\n", MINIMUM(a, b));
#else
printf("\40: The larger one is %d\n", MAXIMUM(a, b));
#endif
}