返回列表 發帖

兩數交換

將兩邊的數值 進行交換
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int num = 10;
  7.     int num2 = 20;
  8.     int temp =0; //暫存的變數
  9.     temp = num2; // 20
  10.     num2 = num; //10
  11.     num = temp; //20
  12.    
  13.     cout << num << endl; //10 <-> 20
  14.     cout << num2 << endl; // 20 <-> 10
  15.     system("pause");
  16.     return 0;   
  17. }
複製代碼

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     int num=10,num1=20,help=0;
  7.     help=num1;
  8.     num1=num;
  9.     num=help;
  10.     cout<<num<<endl;
  11.     cout<<num1<<endl;
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

TOP

#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;
}

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a = 10;
  7.     int b = 20;
  8.     int c =0;
  9.     c = b;
  10.     b = a;  
  11.     a = c;  
  12.    
  13.     cout << a << endl;  
  14.     cout << b << endl;  
  15.     system("pause");
  16.     return 0;   
  17. }
複製代碼

TOP

  1. #include<cstdlib>
  2. #include<iostream>
  3. using namespace std;
  4. int main()
  5. {
  6.    int a=10,b=20,c=0;
  7.    c=b;
  8. b=a;
  9.      a=c;
  10.    cout<<a;
  11.    cout<<b;
  12.    
  13.    
  14.    
  15.      system("pause");
  16.     return 0;
  17. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int num=10;
  7.     int num1=20;
  8.     int a=0;
  9.    
  10.     a=num1;
  11.     num1=num;
  12.     num=a;
  13.    
  14.     cout<<num<<endl;
  15.     cout<<num1<<endl;
  16.    
  17.     system("pause");
  18.     return 0;     
  19. }
複製代碼

TOP

#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;
}
}

TOP

返回列表