백준알고리즘/단계별로 풀어보기3(for문)
[백준 알고리즘] 8393번 - JAVA
백준 Online Judge 8393번 합 https://www.acmicpc.net/problem/8393 ■ 문제 n이 주어졌을 때, 1부터 n까지 합을 구하는 프로그램을 작성하시오. ■ 출력 예시 ■ 풀이 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); sc.close(); int sum = 0; for(int i=0;i