일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 알고리즘
- 정수내림차순으로배치하기
- 필기
- 프로그래밍언어
- 건보필기
- 한국재정정보원
- 농은면접
- CSS
- 부스트코스
- 웹프로그래밍
- 중소기업면접
- 공부
- 후기
- 필기후기
- 프로그래머스
- 웹
- 백준
- HTML
- java
- 인강
- Linux
- 코딩
- algorithm
- 연결요소의개수
- 확인문제
- 수박수박수박수박수?
- BOJ
- 웹개발
- 이클립스
- 프로그래밍
- Today
- Total
목록Algorithm/SW Expert Academy (42)
공부하는 히욤이
SW Expert 2027. 대각선 출력하기* 문제의 저작권은 SW Expert에 있습니다 123456789101112131415 public class Solution { public static void main(String[] args) { System.out.println("#++++"); System.out.println("+#+++"); System.out.println("++#++"); System.out.println("+++#+"); System.out.println("++++#"); } } Colored by Color Scriptercs
SW Expert 1938. 아주 간단한 계산기* 문제의 저작권은 SW Expert에 있습니다 1234567891011121314151617181920import 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 && a=1 && b
SW Expert 2058.자릿수 더하기* 문제의 저작권은 SW Expert에 있습니다 123456789101112131415161718import java.util.Scanner; public class Solution { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int p = scanner.nextInt(); //비밀번호 int k = scanner.nextInt(); //주어지는 번호 int answer = 0; if (p>=000 && p
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"); } }..