문제 설명
해결방안
using System;
public class Solution {
public string solution(string s, int n) {
string answer = "";
foreach(char c in s)
{
if(c!=' ')
{
int tmp = 0;
if((int)c<91)
{
tmp = (int)c + n;
if(tmp>90) tmp = 64 + (tmp-90);
}
else
{
tmp = (int)c + n;
if(tmp>122) tmp = 96 + (tmp-122);
}
answer += Convert.ToChar(tmp);
}else
answer += ' ';
}
return answer;
}
}
'알고리즘' 카테고리의 다른 글
프로그래머스 C# 문자열 내 마음대로 정렬하 (0) | 2024.06.27 |
---|---|
프로그래머스 C# 숫자 문자열과 영단어 (0) | 2024.06.27 |
프로그래머스 C# 최소직사각형 (0) | 2024.06.27 |
프로그래머스 C# 크기가 작은 부분 문자 (0) | 2024.06.27 |
프로그래머스 C# 삼총사 (0) | 2024.06.27 |