일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 정수내림차순으로배치하기
- 공부
- 확인문제
- java
- 프로그래밍
- 프로그래머스
- 프로그래밍언어
- 후기
- 코딩
- algorithm
- 농은면접
- 연결요소의개수
- 수박수박수박수박수?
- 웹프로그래밍
- 웹개발
- 중소기업면접
- Linux
- CSS
- 건보필기
- 알고리즘
- HTML
- 필기
- 인강
- 부스트코스
- 한국재정정보원
- BOJ
- 필기후기
- 백준
- 이클립스
- 웹
- Today
- Total
목록Algorithm (116)
공부하는 히욤이
1204. [S/W 문제해결 기본] 1일차 - 최빈수 구하기* 문제의 저작권은 SW Expert에 있습니다 테스트 케이스 10개 중 9개만 맞았다.조건 중에 최빈수가 여러 개 일 때에는 가장 큰 점수를 출력하라는 조건이 있는데 이걸 못 봐서 30분이나 고생했다.max = score[i]를 max
9498번 : 시험 성적* 문제 출처 : 백준 알고리즘 1234567891011121314151617181920212223import java.io.IOException;import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception, IOException { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); if (n>=90 && n=80 && n=70 && n=60 && n
2558번 : A+B* 문제 출처 : 백준 알고리즘 12345678910111213141516import java.io.IOException;import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception, IOException { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); System.out.println(a+b); } } Colored by Color Scriptercs
10430번 : 나머지* 문제 출처 : 백준 알고리즘 1234567891011121314151617181920import java.io.IOException;import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception, IOException { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); System.out.println((a+b)%c); System.out.println((a%c+b%c)%c); System.out.println((a*b)%c);..
10869번 : 사칙연산* 문제 출처 : 백준 알고리즘 1234567891011121314151617181920import java.io.IOException;import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception, IOException { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); System.out.println(a+b); System.out.println(a-b); System.out.println(a*b); System.out.println(a/b); System.out...