標題:
兩數對調
[打印本頁]
作者:
王瑞喻
時間:
2020-7-7 11:56
標題:
兩數對調
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y,tmp;
cout<<"請依序輸入兩個正整數: ";
cin>>x>>y;
cout<<"對調前: ";
cout<<"x="<<x<<" y="<<y<<endl<<endl;
tmp=x;
x=y;
y=tmp;
cout<<"對調後: ";
cout<<"x="<<x<<" y="<<y<<endl<<endl;
system("pause");
return 0;
}
複製代碼
作者:
駱顗安
時間:
2020-7-9 15:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y,t;
cout<<"請依序輸入兩個正整數:";
cin>>x>>y;
cout<<endl<<"對調前: x="<<x<<" y="<<y;
t=x;
x=y;
y=t;
cout<<endl<<endl<<"對調後: x="<<x<<" y="<<y<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2