#51252: c++正解跟思路


yp11451032@yphs.tp.edu.tw (711-23吳嘉恩)

學校 : 不指定學校
編號 : 312870
來源 : [203.72.178.2]
最後登入時間 :
2025-10-09 17:59:35

#include<iostream>
using namespace std;
int main(){
    string a;//建立兩個字串變數
    string b;//可合併成string a,b;
    cin>>a>>b;//輸入變數
    cout<<a<<" and "<<b<<" sitting in the tree";
}