[백준 28691] 정보보호학부 동아리 소개 (C#, C++) - soo:bak
작성일 :
문제 링크
설명
입력으로 주어지는 문자열 중 첫 문자에 따라서 일치하는 동아리 명을 출력하는 단순한 문자열 처리 문제입니다.
Code
[ C# ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
namespace Solution {
class Program {
static void Main(string[] args) {
Dictionary<char, string> clubMap = new Dictionary<char, string> {
{'M', "MatKor"},
{'W', "WiCys"},
{'C', "CyKor"},
{'A', "AlKor"},
{'$', "$clear"}
};
char firstLetter = Console.ReadLine()![0];
Console.WriteLine(clubMap[firstLetter]);
}
}
}
[ C++ ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
map<char, string> clubMap = {
{'M', "MatKor"},
{'W', "WiCys"},
{'C', "CyKor"},
{'A', "AlKor"},
{'$', "$clear"}
};
char firstLetter; cin >> firstLetter;
cout << clubMap[firstLetter] << "\n";
return 0;
}