返回列表 發帖

兩數對調

本帖最後由 葉桔良 於 2022-11-19 20:19 編輯

  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.     ...
  13.    
  14.     cout<<"對調後: ";
  15.     cout<<"x="<<x<<" y="<<y<<endl<<endl;
  16.    
  17.     system("pause");
  18.     return 0;   
  19. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表