用string設變數名稱name 為字串變數
用while檢查是否有數值輸入 如果有 執行輸出
#include<iostream>using namespace std;
int main(){ string name; while( cin >> name ) { cout << "hello, " << name << endl; } return 0;}