a001. 哈囉 - 高中生程式解題系統

題目:

請寫一個程式,可以讀入指定的字串,並且輸出指定的字串。

比如:輸入字串 "world", 則請輸出 "hello, world"

<aside> 💡

學習所有程式語言的第一個練習題

了解最基本的輸入/輸出(input/output)

</aside>

python

print('hello,',input())

c++

#include<bits/stdc++.h>

using namespace std;
int main()
{
    string ans;
    cin>>ans;
    cout<<"hello, "<<ans<<"\\n";  
    return 0;
}