返回列表 發帖

[想想看] 兩數交換系統

本帖最後由 鄭繼威 於 2023-2-24 20:32 編輯

上禮拜提到的兩個數字在電腦中該怎麼交換呢??

不能在輸出的地方做動作
交換的關鍵
  1. int temp;
  2. temp=a;
  3. a=b;
  4. b=temp;
複製代碼
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main(){
  5.         cout<<"--------兩數交換系統--------"<<endl;
  6.         //單純的宣告輸入輸出
  7.         int a,b;
  8.         cout<<"請輸入第一位數字:";
  9.         cin>>a;
  10.         cout<<"請輸入第二位數字:";
  11.         cin>>b;
  12.        
  13.         //暫停在這
  14.         cout<<"--------兩數準備進行交換...--------\n"<<endl;
  15.         system("pause");
  16.         cout<<endl;
  17.        
  18.         //進行交換
  19.         int temp;
  20.         temp=a;
  21.         a=b;
  22.         b=temp;
  23.        
  24.         //輸出結果
  25.         cout<<"交換後\n第一位數字為:"<<a<<"\n第二位數字為:"<<b<<endl;
  26.        
  27.         system("pause");
  28.         return 0;
  29. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見
Attention Seeker </3

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表