일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 프로그래밍언어
- 공부
- 건보필기
- Linux
- 수박수박수박수박수?
- 알고리즘
- 인강
- 백준
- 확인문제
- 웹프로그래밍
- BOJ
- 후기
- 프로그래머스
- 부스트코스
- 필기
- 코딩
- 이클립스
- algorithm
- java
- 필기후기
- 웹
- CSS
- 중소기업면접
- 웹개발
- 농은면접
- 프로그래밍
- 연결요소의개수
- HTML
- 한국재정정보원
- 정수내림차순으로배치하기
- Today
- Total
목록Algorithm (116)
공부하는 히욤이
SW Expert 2047. 신문 헤드라인* 문제의 저작권은 SW Expert에 있습니다 1234567891011121314import java.util.Scanner; public class Solution { public static void main(String[] args) { Scanner scanner = (new Scanner(System.in)); String input = scanner.next(); if(input.length()
SW Expert 1936. 1대1 가위바위보* 문제의 저작권은 SW Expert에 있습니다 12345678910111213141516171819202122232425262728293031323334import java.util.Scanner; public class Solution { public static void main(String[] args) { Scanner scanner = (new Scanner(System.in)); int a = scanner.nextInt(); int b = scanner.nextInt(); if(a == 1) { if(b != 1 && b!= 3 ) { System.out.println("A"); } else { System.out.println("B"); } }..
SW Expert 2046.스탬프 찍기* 문제의 저작권은 SW Expert에 있습니다 12345678910111213141516import java.util.Scanner; public class Solution { public static void main(String[] args) { int input = (new Scanner(System.in).nextInt()); String s = "#"; if (input
SW Expert 2025.N줄덧셈 * 문제의 저작권은 SW Expert에 있습니다 1234567891011121314151617import java.util.Scanner; public class Solution { public static void main(String[] args) { int num = (new Scanner(System.in).nextInt()); int sum = 0; if(num
디버깅 - 자가진단1제한시간: 1000 ms 메모리제한: 0 MB 해결횟수: 4547 회 시도횟수: 7988 회 2개의 실수(double)를 입력 받아서 두 수의 곱을 정수로 변환한 결과값과 두 수를 각각 정수로 변환하여 곱을 구한 결과값을 출력하는 프로그램을 작성하고 프로그램 내용에 관한 설명을 주석으로 표시하시오. 3.4 5.6519 15 12345678910111213141516import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); double a = scanner.nextDouble(); double b = scanner.n..