seong
백준 8393번 본문
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int sum = 0;
for(int i = 1; i <= n ; i++){
sum += i;
}
System.out.println(sum);
}
}
'알고리즘 > 백준' 카테고리의 다른 글
백준 2741번 (0) | 2022.07.29 |
---|---|
백준 15552번 (BufferedReader, StringTokenizer) (0) | 2022.07.29 |
백준 10950번 (0) | 2022.07.29 |
백준 2739번 (0) | 2022.07.29 |
백준 2480번 (Math.max) (0) | 2022.07.29 |