ComputerScience/Coding Test

백준 2744번: 대소문자 바꾸기

VirtualDever 2022. 11. 12. 01:26
using System;

class Program {
    static void Main(string[] args) {
        string word = Console.ReadLine();
        char[] wordArray = word.ToCharArray();

        string result = "";
        foreach (char c in wordArray) {
            if (Char.IsLower(c) == true) {
                string s = c.ToString().ToUpper();
                result += s;
            } else if (Char.IsUpper(c) == true) {
                string s = c.ToString().ToLower();
                result += s;
            }
        }
        Console.WriteLine(result);
    }
}

문제 출처

https://www.acmicpc.net/problem/2743

 

2743번: 단어 길이 재기

알파벳으로만 이루어진 단어를 입력받아, 그 길이를 출력하는 프로그램을 작성하시오.

www.acmicpc.net

 

'ComputerScience > Coding Test' 카테고리의 다른 글

백준 11718번: 그대로 출력하기  (0) 2022.11.12
백준 2754번: 학점계산  (0) 2022.11.12
백준 2743번: 단어 길이 재기  (0) 2022.11.12
백준 11654번: 아스키 코드  (0) 2022.11.12
백준 7287번: 등록  (0) 2022.11.12