请大神帮忙看一下宏定义函数调用报错问题
#include "stdafx.h"#include "stwp.h"
#include <iostream>
#include <string>
#include <Windows.h>
#define SWAP(x, y, t) ((t) = (x),(x) = (y),(y) = (t)
using namespace std;
int main()
{
int i, j, t = 0;
cout << ":";
cin >> i >> j;
SWAP(i, j, t);
//stwp(i, j);
cout << i << j << endl;
system("pause");
return 0;
}
SWAP调用是为什么会显示 错误:应输入")"