在每筆輸出之前加上Hello。並且利用迴圈讓其持續運轉。
#include <iostream>
using namespace std;
int main() {
string s;
while(cin >> s){
cout << "hello, "<< s << endl;
}
return 0;
}
也可以兩行結束
#import<iostream>
main(){std::string a;while(std::cin>>a){std::cout<<"hello, "<<a<<"\n";}}