BOJ : 1475 방 번호(C++)

김정욱·2020년 10월 7일
0

Algorithm - 문제

목록 보기
7/249
post-thumbnail

문제

Code

#include <iostream>
#include <string.h>

using namespace std;
int arr[10];
int main()
{
    ios::sync_with_stdio(0);
    cin.tie(0);

    int max = 1;
    string room;
    cin >> room;
    for(auto a : room)
    {
        if(a == '6' || a =='9'){
            arr[6]++;
        }
        else
        {
            arr[a-'0']++;
        }
    }
    arr[6] = arr[6] / 2 + arr[6] % 2;
    for(auto a : arr)
    {
        if(a > max)
            max = a;
    }
    cout << max;
    return 0;
}

: char -> int 바꿀 때
  char-'0' = int

profile
Developer & PhotoGrapher

0개의 댓글