A. Next Testtime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard output«Polygon» is a system which allows to create p
见到网上的参考答案:#define swap(x, y)/ x = x + y;/ y = x - y;/ x = x - y; #define swap1(x, y)/ x ^= y;/ y ^= x;/ x ^= y;后面的注释,尤为需要注意:对于swap,当输入的数据是不同种类型的话,这个宏的结果是不对的。 对于swap1,只适用于整型数据。 #define sw