Hello World!(HELLOWORLD) 정답 코드
뿌리튼튼 CS/Algorithm2015. 1. 27. 19:29
난이도 ☆☆☆☆☆
이하는 코드입니다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #include <stdio.h> #include <string> #include <iostream> #pragma warning(disable:4996) using namespace std; int main() { int C; scanf("%d\n", &C); for (int i = 0; i < C; i++) { string input; getline(cin, input); cout << "Hello, " << input << "!" << endl; } return 0; } | cs |
'뿌리튼튼 CS > Algorithm' 카테고리의 다른 글
승률올리기(RATIO) 정답 코드 (0) | 2015.01.28 |
---|---|
록 페스티벌(FESTIVAL) 정답 코드 (0) | 2015.01.28 |
외발뛰기(JUMPGAME) 정답 코드 (0) | 2015.01.27 |
조세푸스 문제(JOSEPHUS) 정답 코드 (1) | 2015.01.26 |
Longest Increasing Sequence(LIS) 정답 코드 (0) | 2015.01.20 |