標題:
兩數交換
[打印本頁]
作者:
周政輝
時間:
2017-6-24 09:07
標題:
兩數交換
將兩邊的數值 進行交換
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
int num=10;
int num2= 20;
int temp =0;
temp = num; // temp = 10 , num = 10
num = num2; // num = 20 , num2 = 20
num2 = temp; // num2 = 10
cout << num << endl;
cout << num2<< endl;
system("pause");
return 0;
}
複製代碼
作者:
高睿辰
時間:
2017-6-24 09:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int num=10;
int num2=20;
int a=0;
a=num;
num=num2;
num2=a;
cout<<num<<endl;
cout<<num2<<endl;
system("pause");
return 0;
}
複製代碼
作者:
莊旻叡
時間:
2017-6-24 09:09
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
int num1=10,num2=20,temp=0;
temp=num1;
num1=num2;
num2=temp;
cout<<num1<<endl;
cout<<num2<<endl;
system("pause");
return 0;
}
複製代碼
作者:
高品溫
時間:
2017-6-24 09:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int num=10;
int num2=20;
int temp=0;
temp=num;
num=num2;
num2=temp;
cout<<num<<endl;
cout<<num2<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2