发布网友 发布时间:2022-04-22 05:57
共3个回答
热心网友 时间:2023-11-24 15:18
#define exchange(a,b) { \
int t;\
t=a;\
a=b;\
b=t;\
}
这里有个问题一定要注意:\后面要紧跟回车,不能有空格,去掉空格,就不会报错了
热心网友 时间:2023-11-24 15:18
#define exchange(a,b) {int t;t=a;a=b;b=t;}
热心网友 时间:2023-11-24 15:19
a没有定义啊,应该 int a,b;才对