250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- React
- Algorithm
- 함수
- 자바
- 데이터통신
- 이벤트
- Node.js
- 한빛아카데미
- 일본어
- prettier-code formatter
- html
- 초연결 사회의 데이터통신과 네트워킹
- 스크롤
- scrolly
- reactjs code snippets
- ArrayList
- 백준
- java
- 알고리즘
- 자바스크립트
- ScrollToPlugin
- JLPT
- 네트워킹
- 연습문제
- 단어장
- gsap
- JavaScript
- 라이브러리
- quizlet
- 초연결사회의 데이터통신과 네트워킹
Archives
- Today
- Total
umilove98의 블로그
백준 21300 Java 본문
반응형
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
String s = bf.readLine();
StringTokenizer st = new StringTokenizer(s);
int a = Integer.parseInt(st.nextToken());
int b = Integer.parseInt(st.nextToken());
int c = Integer.parseInt(st.nextToken());
int d = Integer.parseInt(st.nextToken());
int e = Integer.parseInt(st.nextToken());
int f = Integer.parseInt(st.nextToken());
int sum = a+b+c+d+e+f;
System.out.println(sum * 5);
}
}
반응형
'algorithm > 백준' 카테고리의 다른 글
백준 1297 Java (0) | 2021.07.20 |
---|---|
백준 22193 Java (0) | 2021.07.18 |
백준 20492 Java (0) | 2021.07.18 |
백준 20254 Java (0) | 2021.07.18 |
백준 18301 Java (0) | 2021.07.18 |