-
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader buf = new BufferedReader(new InputStreamReader(System.in)); int loopLeng = Integer.parseInt(buf.readLine()); int total = 0; for (int i=1; i <= loopLeng; i++) { total += i; } System.out.println(total); } }
'PS > 백준' 카테고리의 다른 글
2438 별 찍기 - 1 (0) 2022.03.06 10818 최소,최대 (0) 2022.03.04 1924 2007년 (0) 2022.03.02 2739 구구단 (0) 2022.03.01 2742 기찍 N (0) 2022.02.28