#19162: CPP簡易思路


a12437689a@gmail.com (Bryan A)

學校 : Massachusetts Institute of Technology
編號 : 101309
來源 : [42.77.34.119]
最後登入時間 :
2019-09-08 15:47:05
a001. 哈囉 -- Brian Kernighan | From: [42.77.34.119] | 發表日期 : 2019-09-08 16:03

在每筆輸出之前加上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";}}

 
ZeroJudge Forum