【c++範例】變數交換程式

by - 清晨5:19

#include <iostream>
#define SWAP(x,y,t) (t = x, x = y, y = t)  //定義巨集
using namespace std;
int main(void)
{
    int x=3,y=4,temp;
    SWAP(x,y,temp);  //呼叫巨集
    cout<<"x = "<<x<<" y = "<<y<<endl;
 return 0;
}

你可能會喜歡

0 意見