TOJ 5

TOJ 5

題目

https://toj.tfcis.org/oj/pro/5/

Code

1
2
3
4
5
6
7
8
9
10
//By Koios1143
#include<iostream>
using namespace std;
string s;
int main(){
while(getline(cin,s)){
cout<<"Hello ,"<<s<<" !\n";
}
return 0;
}

複雜度分析

總時間複雜度為 $O(1)$