#34526: tgfhj


yp11151121@yphs.tp.edu.tw (709-34張詠鈞)


#include<bits/stdc++.h>
using namespace std;

int main()
{
    int a,b,temp;
    cout << "請輸入兩個整數";
    cin >>a >>b ;
    temp=a;
    a=b;
    b=temp;
    cout <<"兩數交換後 a =" << a <<"\tb=" <<b<< endl