#47519: 簡單版C++


hwces104107@gmail.com (札克)

學校 : 國立臺南家齊女子高級中學
編號 : 298651
來源 : [124.8.176.101]
最後登入時間 :
2025-09-22 22:56:52

#include <bits/stdc++.h>
using namespace std;

int main(){
    string a;
    cin>>a;//輸入a字串
    cout<<"hello, "<<a<<endl; //輸出hello跟輸入的a字串
    return 0;//結束程式
}