[백준/BOJ] 백준 2741번 : N 찍기
https://www.acmicpc.net/problem/2741 2741번: N 찍기 자연수 N이 주어졌을 때, 1부터 N까지 한 줄에 하나씩 출력하는 프로그램을 작성하시오. www.acmicpc.net for문을 이용해 1부터 n까지 출력한다. 코드 #include using namespace std; int main() { cin.tie(NULL); ios_base::sync_with_stdio(false); int n; cin >> n; //for문을 이용해 1부터 n까지 출력한다 for (int i = 1; i
2020.07.22