일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 인강
- java
- 농은면접
- 알고리즘
- algorithm
- CSS
- 웹개발
- Linux
- 필기
- 웹
- 프로그래밍
- 이클립스
- 연결요소의개수
- 수박수박수박수박수?
- 한국재정정보원
- BOJ
- 코딩
- 중소기업면접
- 정수내림차순으로배치하기
- HTML
- 건보필기
- 후기
- 웹프로그래밍
- 확인문제
- 필기후기
- 공부
- 프로그래밍언어
- 프로그래머스
- 부스트코스
- 백준
- Today
- Total
목록Algorithm/BaekJoon (46)
공부하는 히욤이
2606번 : 바이러스* 문제 출처 : 백준 알고리즘 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.util.StringTokenizer; public class Main_2606 { static int[][]map; static boolean[] visit; static int com; static int cnt; public static void main(String[] args) throws N..
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...