標題:
兩數交換
[打印本頁]
作者:
周政輝
時間:
2017-6-20 17:19
標題:
兩數交換
將兩邊的數值 進行交換
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int num = 10;
int num2 = 20;
int temp =0; //暫存的變數
temp = num2; // 20
num2 = num; //10
num = temp; //20
cout << num << endl; //10 <-> 20
cout << num2 << endl; // 20 <-> 10
system("pause");
return 0;
}
複製代碼
作者:
顏羽彤
時間:
2017-6-20 17:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int num=10,num1=20,help=0;
help=num1;
num1=num;
num=help;
cout<<num<<endl;
cout<<num1<<endl;
system("pause");
return 0;
}
複製代碼
作者:
巫沛庭
時間:
2017-6-20 17:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int num=10;
int num1=20;
int temp=0;
temp=num1;
num1=num;
num=temp;
cout<<num<<endl;
cout<<num1<<endl;
system("pause");
return 0;
}
作者:
張凱婷
時間:
2017-6-20 17:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a = 10;
int b = 20;
int c =0;
c = b;
b = a;
a = c;
cout << a << endl;
cout << b << endl;
system("pause");
return 0;
}
複製代碼
作者:
張閎鈞
時間:
2017-6-20 17:23
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
int a=10,b=20,c=0;
c=b;
b=a;
a=c;
cout<<a;
cout<<b;
system("pause");
return 0;
}
複製代碼
作者:
林峻安
時間:
2017-6-20 17:34
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int num=10;
int num1=20;
int a=0;
a=num1;
num1=num;
num=a;
cout<<num<<endl;
cout<<num1<<endl;
system("pause");
return 0;
}
複製代碼
作者:
巫晉宇
時間:
2017-6-20 17:36
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
{
int u=20;
int g=10;
int j=0;
j=u;
u=g;
g=j;
cout<<g<<endl;
cout<<u<<endl;
system("pause");
return 0;
}
}
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2