코딩/백준 문제 (브론즈)

[백준/9316/C언어] Hello Judge

룻밤 2023. 7. 15. 16:44

https://www.acmicpc.net/problem/9316

 

9316번: Hello Judge

한 줄에 하나의 Hello World, Judge i! 를 출력한다.

www.acmicpc.net


#include <stdio.h>
int main() {
	int n;		// 반복 횟수 n
	scanf("%d", &n);	

	for (int i = 1; i <= n; i++) {		// n번 반복
		printf("Hello World, Judge %d!\n", i);
	}

	return 0;
}