문제 링크입니다: https://www.acmicpc.net/problem/9316
9316번: Hello Judge
한 줄에 하나의 Hello World, Judge i! 를 출력한다.
www.acmicpc.net
간단한 구현 문제였습니다.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
int main(void) | |
{ | |
int N; | |
cin >> N; | |
for (int i = 1; i <= N; i++) | |
{ | |
printf("Hello World, Judge %d!\n", i); | |
} | |
return 0; | |
} |


개발환경:Visual Studio 2017
지적, 조언, 질문 환영입니다! 댓글 남겨주세요~
반응형
'알고리즘 > BOJ' 카테고리의 다른 글
백준 9325번 얼마? (0) | 2021.07.11 |
---|---|
백준 9317번 Monitor DPI (2) | 2021.07.07 |
백준 9310번 Arithmetic and Geometric Sums (0) | 2021.07.05 |
백준 9299번 Math Tutoring (0) | 2021.07.04 |
백준 9298번 Ant Entrapment (0) | 2021.07.04 |