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);
}
}
:)
'코딩 > coding test' 카테고리의 다른 글
[Python] 자료구조 - 배열과 리스트, 숫자의 합 구하기 (0) | 2024.04.10 |
---|---|
[JAVA] 백준 15552번: 빠른 A+B (0) | 2022.05.22 |
[JAVA] 백준 10950번: A+B - 3 (0) | 2022.05.22 |
[JAVA] 백준 2739번: 구구단 (0) | 2022.05.22 |
[JAVA] 백준 2480번 : 주사위 세개 (0) | 2022.05.22 |