프로그래머스 120829 각도기

1 개요[ | ]

프로그래머스 120829 각도기

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

int solution(int angle) {
    if(angle < 90) {
        return 1;
    }
    if(angle == 90) {
        return 2;
    }
    if(angle < 180) {
        return 3;
    }
    return 4;
}