일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- c++
- 매크로
- k-eta
- Django란
- 이분그래프
- 2557
- correlation coefficient
- Django Nodejs 차이점
- scanf
- 구조체와 클래스의 공통점 및 차이점
- 백준
- 연결요소
- vscode
- Django의 편의성
- UI한글변경
- getline
- 시간복잡도
- 장고란
- double ended queue
- string 메소드
- 자료구조
- 입출력 패턴
- 표준 입출력
- 프레임워크와 라이브러리의 차이
- 엑셀
- string 함수
- 알고리즘 공부방법
- 입/출력
- iOS14
- EOF
Archives
- Today
- Total
Storage Gonie
(1) [C++, Python] 백준 No.2557 Hello World 본문
반응형
문제
풀이
# C++
#include <iostream>
using namespace std;
int main(void)
{
cout << "Hello World!" << endl;
return 0;
}
# Python
print("Hello World!")
반응형
'알고리즘 > 백준풀이1. 입출력' 카테고리의 다른 글
(6) [C++, Python] 백준 No.10952 A+B - 5 (0) | 2019.04.18 |
---|---|
(5) [C++, Python, C] 백준 No.10951 A+B - 4 (0) | 2019.04.18 |
(4) [C++, Python] 백준 No.10950 A+B - 3 (0) | 2019.04.18 |
(3) [C++, Python] 백준 No.2558 A+B - 2 (0) | 2019.04.18 |
(2) [C++, Python] 백준 No.1000 A+B (0) | 2019.04.18 |
Comments