標題:
兩數對調
[打印本頁]
作者:
tonyh
時間:
2017-12-20 17:06
標題:
兩數對調
本帖最後由 tonyh 於 2017-12-20 17:15 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x, y, tmp;
cout<<"依序輸入兩個正整數: ";
cin>>x>>y;
cout<<endl<<"對調前: x="<<x<<" y="<<y<<endl<<endl;
tmp=x;
x=y;
y=tmp;
cout<<endl<<"對調後: x="<<x<<" y="<<y<<endl<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃宇綸
時間:
2017-12-20 17:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x, y, tmp;
cout<<"依序輸入兩個正整數: ";
cin>>x>>y;
cout<<endl<<"對調前: x="<<x<<" y="<<y<<endl;
tmp=x;
x=y;
y=tmp;
cout<<endl<<"對調後: x="<<x<<" y="<<y<<endl<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蒙鎧柔
時間:
2017-12-20 17:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y,z;
cout<<"依序輸入兩個正整數: ";
cin>>x>>y;
cout<<endl<<"對調前: x="<<x<<" y="<<y<<endl<<endl;
z=x;
x=y;
y=z;
cout<<endl<<"對調後: x="<<x<<" y="<<y<<endl<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃宇瑄
時間:
2017-12-20 17:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
system("cls");
int x, y, tmp;
cout<<"請依序輸入個正整數: ";
cin>>x>>y;
cout<<"對調前x="<<x<<" y="<<y<<endl;
tmp=x;
x=y;
y=tmp;
cout<<"對調前x="<<x<<"y="<<y<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
作者:
李沛昂
時間:
2017-12-20 17:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y,tmp;
cout<<"請依序輸入兩個數; "<<endl;
cin>>a>>b;
cout<<"對調前: x="<<x<<"y="<<y<<endl<<endl;
x=tmp;
x=y;
y=tmp;
cout<<"對調後: x="<<x<<"y="<<y<<endl<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2