일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 프로그래밍언어
- 한국재정정보원
- 부스트코스
- 후기
- 중소기업면접
- 정수내림차순으로배치하기
- CSS
- Linux
- 알고리즘
- 인강
- BOJ
- 확인문제
- HTML
- 코딩
- 프로그래밍
- 백준
- 웹
- 건보필기
- 이클립스
- 웹개발
- 연결요소의개수
- 필기후기
- 프로그래머스
- 농은면접
- 웹프로그래밍
- algorithm
- 공부
- 수박수박수박수박수?
- 필기
- Today
- Total
목록전체 글 (168)
공부하는 히욤이
SW Expert 2068. 최대수 구하기* 문제의 저작권은 SW Expert에 있습니다 123456789101112131415161718192021import java.util.Scanner; class Solution { public static void main(String args[]) { Scanner scanner = new Scanner(System.in); int T = scanner.nextInt();; //TestCase 개수 int a = 0; for (int test_case = 1; test_case
SW Expert 2029. 몫과 나머지 출력하기* 문제의 저작권은 SW Expert에 있습니다 12345678910111213141516171819import java.util.Scanner; class Solution { public static void main(String args[]) { Scanner scanner = new Scanner(System.in); int T = scanner.nextInt();; //TestCase 개수 int a, b; for (int test_case = 0; test_case
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