일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 포트포워딩
- Git
- 깃허브
- 프로젝트
- github
- 프로그래머스
- 자바의정석
- 웹배포
- peachcong
- 일상기록
- Maven
- ncloud
- EC2
- Project
- Eclipse
- swap
- Code Templates
- navercloud
- spring
- 자바
- 주석
- AWS
- 깃허브프로필
- Java
- sts
- Repositort복사
- 공부
- Today
- Total
목록프로그래머스/코딩 기초 트레이닝 (20)
PEACHCONG
문제💻 프로그래머스 - 문자열 겹쳐쓰기 (Lv.0)https://school.programmers.co.kr/learn/courses/30/lessons/181943 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr 💡 풀이class Solution { public String solution(String my_string, String overwrite_string, int s) { String answer = ""; answer = my_string.substring(0, s); answer += overwri..
문제 💻 프로그래머스 - 홀짝 구분하기 (Lv.0) https://school.programmers.co.kr/learn/courses/30/lessons/181944 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 풀이 (1) 💡if문 + printIn사용 import java.util.Scanner; public class Solution { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); if(n % 2 == 0) { Sy..
문제 💻 프로그래머스 - 문자열 돌리기 (Lv.0) https://school.programmers.co.kr/learn/courses/30/lessons/181945 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 💡 풀이 import java.util.Scanner; public class Solution { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String a = sc.next(); for(int i = 0; i < a.length(); i++) { ..
문제 💻 프로그래머스 - 문자열 붙여서 출력하기 (Lv.0) https://school.programmers.co.kr/learn/courses/30/lessons/181946 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 💡 풀이 import java.util.Scanner; public class Solution { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String a = sc.next(); String b = sc.next(); System.out...
문제 💻 프로그래머스 - 덧셈식 출력하기 (Lv.0) https://school.programmers.co.kr/learn/courses/30/lessons/181947 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 풀이 (1) 💡printIn()을 이용하여 출력 import java.util.Scanner; public class Solution { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.next..
문제💻 프로그래머스 - 특수문자 출력하기 (Lv.0)https://school.programmers.co.kr/learn/courses/30/lessons/181948 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr 💡 풀이import java.util.Scanner;public class Solution { public static void main(String[] args) { System.out.println("!@#$%^&*(\\'\"?:;"); }} 🍑 note주어진 문자열 (!@#$%^&*(\'"?:;)을출력문 안에 ..
🍑note엄청 간단한 문제인데..String 클래스의 toLowerCase와 헷갈려서생각보다 문제 푸는데 시간이 많이 소요되었다🥲자료형이 String이 아닌 char일 경우Character.toLowerCase()를 사용해야한다!기초 중에 기초!! 잊지 말자 문제💻 프로그래머스 - 대소문자 바꿔서 출력하기 (Lv.0)https://school.programmers.co.kr/learn/courses/30/lessons/181949 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr 풀이💡 Character.isUpperCase()를 이용하여 대문자 존재..
문제 💻 프로그래머스 - 문자열 반복해서 출력하기 (Lv.0) https://school.programmers.co.kr/learn/courses/30/lessons/181950 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 풀이 💡기존에 정리해놓은 포스팅이 있어서 링크 첨부 ▼ https://peachcong.tistory.com/11 [Java] 문자열 반복 메서드 repeat() 🍑 peachcong note 프로그래머스에서 문제 풀다가 알게 된 repeat() 나는 해당 문제를 for문을 이용해서 출력했는데, 다른 사람 풀이를 보니 repeat()..
문제 💻 프로그래머스 - a와 b 출력하기 (Lv.0) https://school.programmers.co.kr/learn/courses/30/lessons/181951 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 💡 풀이 import java.util.Scanner; public class Solution { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); System.out.pri..
문제 💻 프로그래머스 - 문자열 출력하기 (Lv.0) https://school.programmers.co.kr/learn/courses/30/lessons/181952 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 💡 풀이 import java.util.Scanner; public class Solution { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String a = sc.next(); System.out.println(a); } } HelloWorld..