C++ 基礎題 a001: 哈囉 發表於 2021-01-19 分類於 ojques 文章字數: 242 所需閱讀時間 ≈ 1 分鐘 題目連結:a001. 哈囉 - 高中生程式解題系統此題旨在使用輸入與輸出的指令—參考程式碼如下 1234567891011#include<iostream>#include<string>using namespace std;int main(){ string st1; cin>>st1; cout<<"hello, "<<st1; return 0;}