프로그래머스 C# 대소문자 바꿔서 출력하기
2023. 5. 25. 10:54ㆍC# 알고리즘 코딩(프로그래머스)
using System;
using System.Linq;
public class Example
{
public static void Main()
{
String s;
String res = "";
Console.Clear();
s = Console.ReadLine();
for(int i = 0;i<s.Length;i++)
{
if(s[i].ToString() == s[i].ToString().ToUpper())
{
res += s[i].ToString().ToLower();
}
else
{
res += s[i].ToString().ToUpper();
}
}
Console.Write(res);
}
}
'C# 알고리즘 코딩(프로그래머스)' 카테고리의 다른 글
프로그래머스 C# 소문자로 바꾸기 (0) | 2023.05.27 |
---|---|
프로그래머스 C# 특수문자 출력하기 (0) | 2023.05.25 |
프로그래머스 C# 문자열 반복해서 출력하기 (0) | 2023.05.24 |
프로그래머스 C# a와 b 출력하기 (0) | 2023.05.23 |
프로그래머스 C# 덧셈식 출력하기 (0) | 2023.05.21 |