題目連結: https://zerojudge.tw/ShowProblem?problemid=a001

# 內容

學習所有程式語言的第一個練習題
請寫一個程式,可以讀入指定的字串,並且輸出指定的字串。

# 輸入

輸入指定的文字

# 輸出

輸出指定的文字

# 解題思路

漫長的解題旅途開始囉~簡單的輸入輸出

# 程式碼

#include <iostream>
using namespace std;
int main()
{
    string s;
    while(cin >> s){
        cout << "hello, " << s << endl;
    }
    return 0;
}
更新於 閱讀次數

用實際行動犒賞爆肝的我😀

Zrn Ye LinePay

LinePay