Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
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
Tags
more
Archives
Today
Total
관리 메뉴

지극히 개인적인 개발블로그

백준 알고리즘 2741: N 찍기 본문

알고리즘

백준 알고리즘 2741: N 찍기

코드분쇄기 2019. 9. 15. 18:56

#include <stdio.h>

int main() {
	int n;
	scanf_s("%d", &n);
	for (int i = 1; i <= n; i++) {
		printf("%d\n", i);
	}
	return 0;
}

 

마찬가지로 쉬운문제 입니다.

다만 #include <iostream>을 하니 시간초과가 떠서 #include <stdio.h>를 사용했습니다.