[백준 26736] Wynik meczu (C#, C++) - soo:bak
작성일 :
문제 링크
설명
문자열에 대한 간단한 구현 문제입니다.
입력으로 주어지는 문자열에서 A
의 갯수와 B
의 갯수를 세서
문제의 출력 조건에 맞게 각 갯수를 출력합니다.
Code
[ C# ]
1
2
3
4
5
6
7
8
9
10
11
namespace Solution {
class Program {
static void Main(string[] args) {
var input = Console.ReadLine()!.ToCharArray();
Console.WriteLine($"{input.Count(c => c == 'A')} : {input.Count(c => c == 'B')}");
}
}
}
[ C++ ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
string str; cin >> str;
int cntA = count(str.begin(), str.end(), 'A'),
cntB = count(str.begin(), str.end(), 'B');
cout << cntA << " : " << cntB << "\n";
return 0;
}