728x90
★ 문제
- n이 주어졌을 때, 1부터 n까지 합을 구하는 프로그램을 작성하시오.
★ 소스코드
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int n = scan.nextInt();
int result = 0;
for(int i=1; i<=n; i++) {
result += i;
}
System.out.println(result);
}
}
728x90
'백준 알고리즘' 카테고리의 다른 글
3. 반복문 - 5 (25314번) (0) | 2023.02.28 |
---|---|
3. 반복문 - 4 (25304번) (0) | 2023.02.28 |
3. 반복문 - 2 (10950번) (0) | 2023.02.28 |
3. 반복문 - 1 (2739번) (0) | 2023.02.28 |
2. 조건문 - 7 (2480번) (0) | 2023.02.28 |