728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/12930
using System;
public class Solution {
public string solution(string s) {
string answer = "";
int split = 0;
for (int i = -1; ++i < s.Length;)
{
if (s[i] == ' ')
{
answer += " ";
split = 0;
continue;
}
string str = s[i].ToString();
answer += split++ % 2 == 0 ? str.ToUpper() : str.ToLower();
}
return answer;
}
}
공백 나오면 넘기고 아니면 상황에 맞게 대소문자 만들어주고..
반응형
'프로그래머스_C# > Level_1' 카테고리의 다른 글
[프로그래머스 C#] 시저 암호 (0) | 2021.08.21 |
---|---|
[프로그래머스 C#] 약수의 합 (0) | 2021.08.20 |
[프로그래머스 C#] 자릿수 더하기 (0) | 2021.08.19 |
[프로그래머스 C#] 자연수 뒤집어 배열로 만들기 (0) | 2021.08.15 |
[프로그래머스 C#] 정수 내림차순으로 배치하기 (0) | 2021.08.11 |