본문 바로가기
알고리즘풀이/백준-자바

[백준/JAVA] 2741번 N찍기

by 이얏호이야호 2020. 7. 20.

import java.io.IOException;

import java.util.Scanner;


public class Main {

public static void main(String args[]) throws IOException {

Scanner in = new Scanner(System.in);

int input = in.nextInt();

for(int i=1;i<=input;i++) {

System.out.println(i);

}

}

}


더 많은 백준 코드가 보고 싶다면 ?  https://chuinggun.tistory.com/category/%EB%B0%B1%EC%A4%80

댓글