일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 중소기업면접
- 프로그래밍
- 연결요소의개수
- 수박수박수박수박수?
- 공부
- java
- 웹프로그래밍
- 건보필기
- 백준
- Linux
- 한국재정정보원
- 농은면접
- 필기
- 프로그래밍언어
- 코딩
- 프로그래머스
- 알고리즘
- 정수내림차순으로배치하기
- 확인문제
- BOJ
- 이클립스
- HTML
- 부스트코스
- Today
- Total
목록Algorithm (116)
공부하는 히욤이
SW Expert 1933. 간단한 N의 약수* 문제의 저작권은 SW Expert에 있습니다 12345678910111213141516171819import java.util.Scanner; class Solution { public static void main(String args[]) { Scanner scanner = new Scanner(System.in); int n = scanner.nextInt(); if(n>=1 && n
SW Expert 2050. 알파벳을 숫자로 변환* 문제의 저작권은 SW Expert에 있습니다 123456789101112131415161718import java.util.Scanner; class Solution { public static void main(String args[]) { Scanner scanner = new Scanner(System.in); String s = scanner.next(); if (s.length()
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