일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 확인문제
- 프로그래밍
- 알고리즘
- 수박수박수박수박수?
- 농은면접
- 코딩
- 백준
- 연결요소의개수
- 부스트코스
- 프로그래머스
- 프로그래밍언어
- 공부
- 인강
- 웹
- 필기
- 정수내림차순으로배치하기
- CSS
- 필기후기
- Linux
- BOJ
- 웹프로그래밍
- 건보필기
- 한국재정정보원
- 후기
- 이클립스
- java
- 중소기업면접
- algorithm
- 웹개발
- HTML
- Today
- Total
목록Algorithm/SW Expert Academy (42)
공부하는 히욤이
SW Expert 1933. 2071. 평균값 구하기* 문제의 저작권은 SW Expert에 있습니다 1234567891011121314151617181920import java.util.Scanner; class Solution { public static void main(String args[]) { Scanner scanner = new Scanner(System.in); int T = scanner.nextInt(); for (int test_case = 1; test_case
SW Expert 2063. 중간값 찾기* 문제의 저작권은 SW Expert에 있습니다 1234567891011121314151617181920212223242526272829303132import java.util.Scanner; public class Solution { public static void main(String[] args) { Scanner scanner = (new Scanner(System.in)); int N = scanner.nextInt(); //점수 개수 int[] score = new int[N]; if(N %2 != 0 && N>=9 && N
SW Expert 1545. 거꾸로 출력해 보아요* 문제의 저작권은 SW Expert에 있습니다 1234567891011121314import java.util.Scanner; class Solution { public static void main(String args[]) { Scanner scanner = new Scanner(System.in); int n = scanner.nextInt(); for (int i = n; i >= 0; i--) { System.out.print(i + " "); } } } Colored by Color Scriptercs
SW Expert 2072. 홀수만 더하기* 문제의 저작권은 SW Expert에 있습니다 12345678910111213141516171819202122232425import java.util.Scanner; class Solution { public static void main(String args[]) { Scanner scanner = new Scanner(System.in); int t = scanner.nextInt(); int[] num = new int[10]; for (int test_case = 0; test_case
SW Expert 2019. 더블더블* 문제의 저작권은 SW Expert에 있습니다 12345678910111213141516import java.util.Scanner; class Solution { public static void main(String args[]) { Scanner scanner = new Scanner(System.in); int input = scanner.nextInt(); //받은 수 int temp = 1 ; for (int i = 1; i