Code:
**********************************************
//Function swape ฟังก์ชันการแปลงค่าจาก A ไป B และ จาก B ไป A
#include<iostream>
using namespace std;
void swape(int x,int y)
{
int A;
A=x;
x=y;
y=A;
cout<<"A = "<<x<<" , B = "<<y<<endl;
}
int main()
{ int a,b;
cout<<"\nInput value A : ";
cin>>a;
cout<<"\nInput value B : ";
cin>>b;
cout<<endl<<endl;
swape(a,b);
}
*******************************************************
No comments:
Post a Comment