일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 프로그래밍
- 웹개발
- 필기후기
- 부스트코스
- 프로그래밍언어
- 공부
- 중소기업면접
- algorithm
- 한국재정정보원
- 웹프로그래밍
- 건보필기
- 농은면접
- 프로그래머스
- CSS
- 백준
- 확인문제
- 필기
- BOJ
- java
- 알고리즘
- 수박수박수박수박수?
- 연결요소의개수
- 이클립스
- 웹
- HTML
- 인강
- 정수내림차순으로배치하기
- Linux
- 코딩
- 후기
- Today
- Total
목록전체보기 (168)
공부하는 히욤이
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...
1008번 : 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); double a = sc.nextDouble(); double b = sc.nextDouble(); System.out.println(a/b); } } Colored by Color Scriptercs
SW Expert 1966. 숫자를 정렬하자* 문제의 저작권은 SW Expert에 있습니다 12345678910111213141516171819202122232425import java.util.Arrays;import java.util.Scanner; public class Solution { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int t = sc.nextInt(); for (int test_case = 1; test_case
2438번 : 별 찍기 - 1* 문제 출처 : 백준 알고리즘 12345678910111213141516171819import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int N = Integer.parseInt(br.readLine()); if (N >=1 && N