Notice
Recent Posts
Recent Comments
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Archives
Today
Total
관리 메뉴

충분히 쌓여가는

백준[Java] 8393번 합 본문

IT/Java[백준]

백준[Java] 8393번 합

빌드이너프 2023. 2. 16. 14:18

https://www.acmicpc.net/problem/8393

 

8393번: 합

n이 주어졌을 때, 1부터 n까지 합을 구하는 프로그램을 작성하시오.

www.acmicpc.net


문제풀이 1

import java.util.Scanner;
public class _8393_1 {
    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 <= n; i++) {
            sum += i;
        }
        System.out.println(sum);
    }
}

문제풀이 2

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class _8393_2 {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        int n = Integer.parseInt(br.readLine());
        br.close();
        int sum = 0;


        for (int i = 0; i <= n; i++) {
            sum += i;
        }
        System.out.println(sum);
    }
}

문제풀이 3

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class _8393_3 {
    public static void main(String[] args) throws IOException {

        int n = Integer.parseInt(new BufferedReader(new InputStreamReader(System.in)).readLine());
        int sum = 0;


        for (int i = 0; i <= n; i++) {
            sum += i;
        }
        System.out.println(sum);
    }
}