a001: 哈囉

  1. 1. 內容
  2. 2. 範例輸入
  3. 3. 範例輸出
  4. 4. 想法
  5. 5. 程式碼

a001: 哈囉

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

內容

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

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

範例輸入

world
C++
hello, C++

範例輸出

hello, world
hello, C++
hello, Taiwan

想法

基本輸入輸出。

程式碼

C++
1
2
3
4
5
6
7
8
9
#include <iostream>
using namespace std;

int main(){
string a;
cin >> a;
cout << "hello, " << a;
return 0;
}