Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 백준
- 그리디알고리즘
- 회의실 배정
- 강의실2
- 원형
- 수 만들기
- 윈도우
- 영상 프레임 추출
- 마우스 따라다니기
- 2020 KAKAO BLIND RECRUITMENT
- c#
- 탄막 스킬 범위
- AI Hub
- mysqld.sock
- 우분투
- 탄막 이동
- 단어 수학
- SWEA
- 문자열 압축
- 3273
- 걷는건귀찮아
- 알고리즘 목차
- 자료구조 목차
- MySQL
- 탄막
- 토글 그룹
- 18249
- 유니티
- 알고리즘
- 3344
Archives
- Today
- Total
와이유스토리
[문자열] 프로그래머스 시저 암호 Java 본문
import java.lang.String;
class Solution {
public String solution(String s, int n) {
String answer = "";
char temp;
int m;
for(int i=0; i<s.length(); i++)
{
temp = s.charAt(i);
if((temp>='a')&&(temp<='z'))
{
m = (temp+n-'a')%26;
temp = (char)('a'+m);
}
else if((temp>='A')&&(temp<='Z'))
{
m = (temp+n-'A')%26;
temp = (char)('A'+m);
}
answer = answer.concat(Character.toString(temp));
}
return answer;
}
}
'코딩테스트 > 문자열' 카테고리의 다른 글
[문자열] 프로그래머스 주차 요금 Python (0) | 2023.01.21 |
---|---|
[문자열] 프로그래머스 개인정보 수집 유효기간 C++, Python (0) | 2023.01.18 |
[문자열] 프로그래머스 후보키 Python (0) | 2022.03.03 |
[문자열, 이진탐색] 프로그래머스 순위 검색 Python (0) | 2022.02.04 |
[딕셔너리] 프로그래머스 오픈채팅방 Python (0) | 2022.02.04 |
Comments