정답
import java.util.Scanner;
class Solution
{
public static void main(String args[]) throws Exception
{
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
int answer = 0;
for(int i=1; i<=N; i++)
{
answer+=i;
}
System.out.println(answer);
}
}
'Java > SWEA' 카테고리의 다른 글
[JAVA] SWEA 1933. 간단한 N의 약수 (0) | 2024.05.01 |
---|---|
[JAVA] SWEA 1938. 아주 간단한 계산기 (0) | 2024.05.01 |
[JAVA] SWEA 2029. 몫과 나머지 출력하기 (0) | 2024.05.01 |
[JAVA] SWEA 2043. 서랍의 비밀번호 (0) | 2024.05.01 |
[JAVA] SWEA 2046. 스탬프 찍기 (0) | 2024.05.01 |