返回列表 發帖

兩數對調

本帖最後由 許婷芳 於 2020-10-24 20:39 編輯

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x,y,tmp;
  7.     cout<<"請依序輸入兩個正整數: ";
  8.     cin>>x>>y;
  9.     cout<<"對調前: ";
  10.     cout<<"x="<<x<<" y="<<y<<endl<<endl;
  11.    
  12.     tmp=x;
  13.     x=y;
  14.     y=tmp;
  15.    
  16.     cout<<"對調後: ";
  17.     cout<<"x="<<x<<" y="<<y<<endl<<endl;
  18.    
  19.     system("pause");
  20.     return 0;   
  21. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表